diff options
Diffstat (limited to 'lldb/source/Commands/CommandObjectStats.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectStats.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Commands/CommandObjectStats.cpp b/lldb/source/Commands/CommandObjectStats.cpp index e3a1f9433662..eeec4a8d3e77 100644 --- a/lldb/source/Commands/CommandObjectStats.cpp +++ b/lldb/source/Commands/CommandObjectStats.cpp @@ -7,8 +7,6 @@ //===----------------------------------------------------------------------===// #include "CommandObjectStats.h" -#include "lldb/Host/Host.h" -#include "lldb/Interpreter/CommandInterpreter.h" #include "lldb/Interpreter/CommandReturnObject.h" #include "lldb/Target/Target.h" @@ -81,7 +79,8 @@ protected: for (auto &stat : target.GetStatistics()) { result.AppendMessageWithFormat( "%s : %u\n", - lldb_private::GetStatDescription(static_cast<lldb_private::StatisticKind>(i)) + lldb_private::GetStatDescription( + static_cast<lldb_private::StatisticKind>(i)) .c_str(), stat); i += 1; |