[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 16:50:14 PST 2016
This revision was automatically updated to reflect the committed changes.
Closed by commit rL288094: [lldb] Fix compilation of SymbolFileDWARF.cpp with ENABLE_DEBUG_PRINTF set (authored by alexshap).
Changed prior to commit:
https://reviews.llvm.org/D27177?vs=79465&id=79481#toc
Repository:
rL LLVM
https://reviews.llvm.org/D27177
Files:
lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
Index: lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
===================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/SymbolFileDWARF.cpp
+++ lldb/trunk/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.79481.patch
Type: text/x-patch
Size: 525 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20161129/4775825f/attachment.bin>
More information about the lldb-commits
mailing list