diff options
Diffstat (limited to 'lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h')
-rw-r--r-- | lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h index 9b8b4cb..a199ef970 100644 --- a/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h +++ b/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationClient.h @@ -451,9 +451,8 @@ public: GetModulesInfo(llvm::ArrayRef<FileSpec> module_file_specs, const llvm::Triple &triple); - bool ReadExtFeature(const lldb_private::ConstString object, - const lldb_private::ConstString annex, std::string &out, - lldb_private::Status &err); + llvm::Expected<std::string> ReadExtFeature(llvm::StringRef object, + llvm::StringRef annex); void ServeSymbolLookups(lldb_private::Process *process); |