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 } }
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 } }
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits