diff options
author | Pavel Labath <labath@google.com> | 2018-03-20 16:14:00 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2018-03-20 16:14:00 +0000 |
commit | 9af71b38750328a110204c6e186e8d1e0dc6982f (patch) | |
tree | a0e3db884af13f4a9997cd3355b26b54d7fa3541 /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | |
parent | 5a9210e651803b27c3865b80f353ba1a2c3aa2a6 (diff) | |
download | bcm5719-llvm-9af71b38750328a110204c6e186e8d1e0dc6982f.tar.gz bcm5719-llvm-9af71b38750328a110204c6e186e8d1e0dc6982f.zip |
Move StringExtractorGDBRemote.h to the include folder
While trying to use this header I noticed that it is not in the include
folder. Move it to there and update all #includes to reference that file
correctly.
llvm-svn: 327996
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp index 4be92b79fd1..4fc1fc7a196 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServer.cpp @@ -19,8 +19,8 @@ // Project includes #include "ProcessGDBRemoteLog.h" -#include "Utility/StringExtractorGDBRemote.h" #include "lldb/Utility/StreamString.h" +#include "lldb/Utility/StringExtractorGDBRemote.h" using namespace lldb; using namespace lldb_private; |