[Lldb-commits] [lldb] r178692 - #include clang's AST/DeclCXX.h to pick up CXXRecordDecl definition,
Jason Molenda
jmolenda at apple.com
Wed Apr 3 13:32:17 PDT 2013
Author: jmolenda
Date: Wed Apr 3 15:32:17 2013
New Revision: 178692
URL: http://llvm.org/viewvc/llvm-project?rev=178692&view=rev
Log:
#include clang's AST/DeclCXX.h to pick up CXXRecordDecl definition,
needed for some versions of clang.
Modified:
lldb/trunk/source/DataFormatters/NSDictionary.cpp
Modified: lldb/trunk/source/DataFormatters/NSDictionary.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/DataFormatters/NSDictionary.cpp?rev=178692&r1=178691&r2=178692&view=diff
==============================================================================
--- lldb/trunk/source/DataFormatters/NSDictionary.cpp (original)
+++ lldb/trunk/source/DataFormatters/NSDictionary.cpp Wed Apr 3 15:32:17 2013
@@ -21,6 +21,8 @@
#include "lldb/Target/ObjCLanguageRuntime.h"
#include "lldb/Target/Target.h"
+#include "clang/AST/DeclCXX.h"
+
using namespace lldb;
using namespace lldb_private;
using namespace lldb_private::formatters;
More information about the lldb-commits
mailing list