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/ThreadGDBRemote.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/ThreadGDBRemote.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp index 27dd03bfc7b..909de80f79e 100644 --- a/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/ThreadGDBRemote.cpp @@ -24,7 +24,7 @@ #include "ProcessGDBRemote.h" #include "ProcessGDBRemoteLog.h" -#include "Utility/StringExtractorGDBRemote.h" +#include "lldb/Utility/StringExtractorGDBRemote.h" using namespace lldb; using namespace lldb_private; |