Patch from Jean-Daniel Dupas:

        Makefile patch to explicitly use PROJ_SRC_DIR when required. It fixes 
        build when obj dir is not source dir. 

I also fixed a build warning in ClangResultSynthesizer.cpp.



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@108210 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangResultSynthesizer.cpp b/source/Expression/ClangResultSynthesizer.cpp
index 3a5769b..6d284e4 100644
--- a/source/Expression/ClangResultSynthesizer.cpp
+++ b/source/Expression/ClangResultSynthesizer.cpp
@@ -27,10 +27,11 @@
 using namespace lldb_private;
 
 ClangResultSynthesizer::ClangResultSynthesizer(ASTConsumer *passthrough) :
-    m_passthrough(passthrough),
-    m_passthrough_sema(NULL),
-    m_sema(NULL),
-    m_ast_context(NULL)
+    m_ast_context (NULL),
+    m_passthrough (passthrough),
+    m_passthrough_sema (NULL),
+    m_sema (NULL),
+    m_action (NULL)
 {
     if (!m_passthrough)
         return;