aboutsummaryrefslogtreecommitdiff
path: root/lldb/source/Commands/CommandObjectLog.cpp
diff options
context:
space:
mode:
authorZachary Turner <zturner@google.com>2017-03-03 20:56:28 +0000
committerZachary Turner <zturner@google.com>2017-03-03 20:56:28 +0000
commit6f9e690199edd68b20bac92983a216459bc568ed (patch)
tree7ea5fb74ec0ed3234dd3af2decf394709498e8bc /lldb/source/Commands/CommandObjectLog.cpp
parent000d61acfdf96a72a1c5e352f87c90eafa936de6 (diff)
downloadllvm-6f9e690199edd68b20bac92983a216459bc568ed.zip
llvm-6f9e690199edd68b20bac92983a216459bc568ed.tar.gz
llvm-6f9e690199edd68b20bac92983a216459bc568ed.tar.bz2
Move Log from Core -> Utility.
All references to Host and Core have been removed, so this class can now safely be lowered into Utility. Differential Revision: https://reviews.llvm.org/D30559 llvm-svn: 296909
Diffstat (limited to 'lldb/source/Commands/CommandObjectLog.cpp')
-rw-r--r--lldb/source/Commands/CommandObjectLog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectLog.cpp b/lldb/source/Commands/CommandObjectLog.cpp
index 9760963..7d49914 100644
--- a/lldb/source/Commands/CommandObjectLog.cpp
+++ b/lldb/source/Commands/CommandObjectLog.cpp
@@ -14,7 +14,6 @@
#include "CommandObjectLog.h"
#include "lldb/Core/Debugger.h"
#include "lldb/Core/Debugger.h"
-#include "lldb/Core/Log.h"
#include "lldb/Core/Module.h"
#include "lldb/Core/StreamFile.h"
#include "lldb/Core/Timer.h"
@@ -30,6 +29,7 @@
#include "lldb/Symbol/SymbolVendor.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/Target.h"
+#include "lldb/Utility/Log.h"
#include "lldb/Utility/RegularExpression.h"
#include "lldb/Utility/Stream.h"