diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-05-29 08:51:58 +0000 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-05-29 08:51:58 +0000 |
commit | cf4321a44d040468495671e4a8fae7418ce93d95 (patch) | |
tree | f2cc5e6adb3b6a7b6980745e656ac9734ddcab8f /lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | |
parent | 816a9668bb6c56b5fae96cbe6ca8c33aa90be1e5 (diff) | |
download | bcm5719-llvm-cf4321a44d040468495671e4a8fae7418ce93d95.tar.gz bcm5719-llvm-cf4321a44d040468495671e4a8fae7418ce93d95.zip |
More StructuredData::Type::eTypeDictionary -> lldb::eStructuredDataTypeDictionary
...missing from previous r304138 "Added new API to SBStructuredData class"
llvm-svn: 304142
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp index 626ec66cd5e..33aed7a43c4 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.cpp @@ -3278,7 +3278,7 @@ GDBRemoteCommunicationClient::SendGetTraceConfigPacket(lldb::user_id_t uid, auto json_object = StructuredData::ParseJSON(response.Peek()); if (!json_object || - json_object->GetType() != StructuredData::Type::eTypeDictionary) { + json_object->GetType() != lldb::eStructuredDataTypeDictionary) { error.SetErrorString("Invalid Configuration obtained"); return error; } @@ -3299,7 +3299,7 @@ GDBRemoteCommunicationClient::SendGetTraceConfigPacket(lldb::user_id_t uid, json_dict->GetValueForKey("params"); if (custom_params_sp) { if (custom_params_sp->GetType() != - StructuredData::Type::eTypeDictionary) { + lldb::eStructuredDataTypeDictionary) { error.SetErrorString("Invalid Configuration obtained"); return error; } else |