We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68281f3 commit 1ddd26bCopy full SHA for 1ddd26b
lldb/tools/lldb-dap/Handler/DAPGetModuleSymbolsRequestHandler.cpp
@@ -100,12 +100,12 @@ DAPGetModuleSymbolsRequestHandler::Run(
100
lldb::SBModuleSpec module_spec;
101
if (args.moduleId) {
102
llvm::SmallVector<uint8_t, 20> uuid_bytes;
103
- if (!lldb_private::UUID::DecodeUUIDBytesFromString(*args.moduleId, uuid_bytes).empty())
+ if (!lldb_private::UUID::DecodeUUIDBytesFromString(*args.moduleId,
104
+ uuid_bytes)
105
+ .empty())
106
return llvm::make_error<DAPError>("Invalid module ID");
107
- module_spec.SetUUIDBytes(
- uuid_bytes.data(),
108
- uuid_bytes.size());
+ module_spec.SetUUIDBytes(uuid_bytes.data(), uuid_bytes.size());
109
}
110
111
if (args.moduleName) {
0 commit comments