[Lldb-commits] [lldb] r179389 - Fixed a bug where a few class forward declarations

Sean Callanan scallanan at apple.com
Fri Apr 12 11:08:10 PDT 2013


Author: spyffe
Date: Fri Apr 12 13:08:10 2013
New Revision: 179389

URL: http://llvm.org/viewvc/llvm-project?rev=179389&view=rev
Log:
Fixed a bug where a few class forward declarations
weren't in the proper namespace.

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

Modified: lldb/trunk/include/lldb/Expression/DWARFExpression.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Expression/DWARFExpression.h?rev=179389&r1=179388&r2=179389&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Expression/DWARFExpression.h (original)
+++ lldb/trunk/include/lldb/Expression/DWARFExpression.h Fri Apr 12 13:08:10 2013
@@ -17,11 +17,11 @@
 #include "lldb/Core/Error.h"
 #include "lldb/Core/Scalar.h"
 
+namespace lldb_private {
+    
 class ClangExpressionVariable;
 class ClangExpressionVariableList;
 
-namespace lldb_private {
-
 class ClangExpressionDeclMap;
 
 //----------------------------------------------------------------------





More information about the lldb-commits mailing list