diff options
author | Pavel Labath <labath@google.com> | 2017-02-10 12:21:22 +0000 |
---|---|---|
committer | Pavel Labath <labath@google.com> | 2017-02-10 12:21:22 +0000 |
commit | 5f7e583b33759eab244e0e1a29a4e5ebb778d6a8 (patch) | |
tree | 90224a3562f697978ade2c1ee55093c9e69bc4fe /lldb/source/Plugins/Platform/Android | |
parent | 463cb8ac30d0473c96d51bfd279589b1ff920cc8 (diff) | |
download | bcm5719-llvm-5f7e583b33759eab244e0e1a29a4e5ebb778d6a8.tar.gz bcm5719-llvm-5f7e583b33759eab244e0e1a29a4e5ebb778d6a8.zip |
UriParser cleanup
- move the header file to the include folder
- enclose the class in the proper namespace
llvm-svn: 294741
Diffstat (limited to 'lldb/source/Plugins/Platform/Android')
-rw-r--r-- | lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp | 5 | ||||
-rw-r--r-- | lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp b/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp index 64a320f8c3f..94dc564988c 100644 --- a/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp +++ b/lldb/source/Plugins/Platform/Android/PlatformAndroid.cpp @@ -7,10 +7,6 @@ // //===----------------------------------------------------------------------===// -// C Includes -// C++ Includes -// Other libraries and framework includes -#include "Utility/UriParser.h" #include "lldb/Core/Log.h" #include "lldb/Core/Module.h" #include "lldb/Core/PluginManager.h" @@ -19,6 +15,7 @@ #include "lldb/Core/ValueObject.h" #include "lldb/Host/HostInfo.h" #include "lldb/Host/StringConvert.h" +#include "lldb/Utility/UriParser.h" // Project includes #include "AdbClient.h" diff --git a/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp b/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp index 7f824ba8901..3e075d25d49 100644 --- a/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp +++ b/lldb/source/Plugins/Platform/Android/PlatformAndroidRemoteGDBServer.cpp @@ -12,9 +12,9 @@ #include "lldb/Host/ConnectionFileDescriptor.h" #include "lldb/Host/common/TCPSocket.h" #include "lldb/Utility/Error.h" +#include "lldb/Utility/UriParser.h" #include "PlatformAndroidRemoteGDBServer.h" -#include "Utility/UriParser.h" #include <sstream> |