[Lldb-commits] [PATCH] D27177: [lldb] Fix compilation of	SymbolFileDWARF.cpp with ENABLE_DEBUG_PRINTF set
    Alexander Shaposhnikov via Phabricator via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Mon Nov 28 15:26:43 PST 2016
    
    
  
alexshap created this revision.
alexshap added reviewers: labath, sas.
alexshap added a subscriber: LLDB.
alexshap set the repository for this revision to rL LLVM.
This diff adds missing semicolon in SymbolFileDWARF.cpp .
Repository:
  rL LLVM
https://reviews.llvm.org/D27177
Files:
  source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
Index: source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
===================================================================
--- source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
+++ source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
@@ -2046,7 +2046,8 @@
     m_global_index.Dump(&s);
     s.Printf("\nTypes:\n");
     m_type_index.Dump(&s);
-    s.Printf("\nNamespaces:\n") m_namespace_index.Dump(&s);
+    s.Printf("\nNamespaces:\n");
+    m_namespace_index.Dump(&s);
 #endif
   }
 }
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D27177.79465.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20161128/aff75e86/attachment.bin>
    
    
More information about the lldb-commits
mailing list