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.
2 parents c4fa513 + a9f6d0f commit 5e792aeCopy full SHA for 5e792ae
include/sharg/detail/format_tdl.hpp
@@ -232,9 +232,10 @@ class format_tdl : format_base
232
parameters.push_back(tdl::Node{
233
.name = config.long_id,
234
.description = description,
235
- .tags = std::move(tags),
236
.value = to_tdl(value),
237
});
+ // gcc 15 with hardened flags (fedora-flags) doesn't like having the move in the tdl::Node ctor.
238
+ parameters.back().tags = std::move(tags);
239
info.cliMapping.emplace_back("--" + config.long_id, config.long_id);
240
},
241
config);
0 commit comments