[Lldb-commits] [lldb] r145446 - /lldb/trunk/include/lldb/Expression/ASTDumper.h

Sean Callanan scallanan at apple.com
Tue Nov 29 14:47:44 PST 2011


Author: spyffe
Date: Tue Nov 29 16:47:44 2011
New Revision: 145446

URL: http://llvm.org/viewvc/llvm-project?rev=145446&view=rev
Log:
Added #ifdef wrappers around the contents of
ASTDumper.h.

Modified:
    lldb/trunk/include/lldb/Expression/ASTDumper.h

Modified: lldb/trunk/include/lldb/Expression/ASTDumper.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Expression/ASTDumper.h?rev=145446&r1=145445&r2=145446&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Expression/ASTDumper.h (original)
+++ lldb/trunk/include/lldb/Expression/ASTDumper.h Tue Nov 29 16:47:44 2011
@@ -7,6 +7,9 @@
 //
 //===----------------------------------------------------------------------===//
 
+#ifndef liblldb_ASTDumper_h_
+#define liblldb_ASTDumper_h_
+
 #include "clang/AST/DeclVisitor.h"
 #include "clang/AST/StmtVisitor.h"
 #include "clang/AST/TypeVisitor.h"
@@ -35,3 +38,5 @@
 };
 
 } // namespace lldb_private
+
+#endif





More information about the lldb-commits mailing list