Enabled dedicated debugger support in Clang, meaning
that Objective-C methods returning types incompatible
with "id" can be properly cast.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@142702 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Expression/ClangExpressionParser.cpp b/source/Expression/ClangExpressionParser.cpp
index 3156a33..e491426 100644
--- a/source/Expression/ClangExpressionParser.cpp
+++ b/source/Expression/ClangExpressionParser.cpp
@@ -231,7 +231,7 @@
     m_compiler->getLangOpts().ThreadsafeStatics = false;
     m_compiler->getLangOpts().AccessControl = false; // Debuggers get universal access
     m_compiler->getLangOpts().DollarIdents = true; // $ indicates a persistent variable name
-    //m_compiler->getLangOpts().DebuggerSupport = true; // Features specifically for debugger clients
+    m_compiler->getLangOpts().DebuggerSupport = true; // Features specifically for debugger clients
     
     // Set CodeGen options
     m_compiler->getCodeGenOpts().EmitDeclMetadata = true;