@@ -151,7 +151,7 @@ struct Configuration {
151151 // / information in your executable contains relative paths, this option can be
152152 // / used so that `lldb-dap` can find source files and object files that have
153153 // / relative paths.
154- std::string debuggerRoot = " " ;
154+ std::string debuggerRoot;
155155
156156 // / Enable auto generated summaries for variables when no summaries exist for
157157 // / a given type. This feature can cause performance delays in large projects
@@ -194,7 +194,7 @@ struct Configuration {
194194
195195 // / Specify a source path to remap "./" to allow full paths to be used when
196196 // / setting breakpoints in binaries that have relative source paths.
197- std::string sourcePath = " " ;
197+ std::string sourcePath;
198198
199199 // / Specify an array of path re-mappings. Each element in the array must be a
200200 // / two element array containing a source and destination pathname. Overrides
@@ -230,15 +230,15 @@ struct Configuration {
230230 // /
231231 // / *NOTE:* When launching, either `launchCommands` or `program` must be
232232 // / configured. If both are configured then `launchCommands` takes priority.
233- std::string program = " " ;
233+ std::string program;
234234
235235 // / Target triple for the program (arch-vendor-os). If not set, inferred from
236236 // / the binary.
237- std::string targetTriple = " " ;
237+ std::string targetTriple;
238238
239239 // / Specify name of the platform to use for this target, creating the platform
240240 // / if necessary.
241- std::string platformName = " " ;
241+ std::string platformName;
242242};
243243
244244// / lldb-dap specific launch arguments.
@@ -264,7 +264,7 @@ struct LaunchRequestArguments {
264264 std::vector<std::string> launchCommands;
265265
266266 // / The program working directory.
267- std::string cwd = " " ;
267+ std::string cwd;
268268
269269 // / An array of command line argument strings to be passed to the program
270270 // / being launched.
@@ -336,7 +336,7 @@ struct AttachRequestArguments {
336336 std::string gdbRemoteHostname = " localhost" ;
337337
338338 // / Path to the core file to debug.
339- std::string coreFile = " " ;
339+ std::string coreFile;
340340
341341 // / @}
342342};
0 commit comments