diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2020-01-17 20:45:01 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2020-01-17 20:45:01 +0000 |
commit | 706b4fc47bbc608932d3b491ae19a3b9cde9497b (patch) | |
tree | 4adf86a776049cbf7f69a1929c4babcbbef925eb /lldb/source/Commands/CommandObjectStats.cpp | |
parent | 7cc9cf2bf09f069cb2dd947ead05d0b54301fb71 (diff) |
Notes
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; |