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
   }
 }


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
   }
 }
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
  • [Lldb-commits] [PA... Alexander Shaposhnikov via Phabricator via lldb-commits

Reply via email to