Moved NDEBUG from a global setting to a specific
hack.


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@107894 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Symbol/ClangASTContext.cpp b/source/Symbol/ClangASTContext.cpp
index 93e84e9..b9670d4 100644
--- a/source/Symbol/ClangASTContext.cpp
+++ b/source/Symbol/ClangASTContext.cpp
@@ -14,6 +14,7 @@
 #include <string>
 
 // Other libraries and framework includes
+#define NDEBUG
 #include "clang/AST/ASTContext.h"
 #include "clang/AST/ASTImporter.h"
 #include "clang/AST/CXXInheritance.h"
@@ -26,6 +27,7 @@
 #include "clang/Basic/TargetOptions.h"
 #include "clang/Frontend/FrontendOptions.h"
 #include "clang/Frontend/LangStandard.h"
+#undef NDEBUG
 
 #include "lldb/Core/dwarf.h"