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 083411c commit d76f650Copy full SHA for d76f650
src/command_line.cpp
@@ -62,7 +62,7 @@ static auto addInterface(CommandLine & cmdline, sys_string val) {
62
}
63
64
static auto setUuid(CommandLine & cmdline, sys_string val) {
65
- if (auto maybeUuid = Uuid::from_chars(std::string_view(val.c_str(), val.storage_size())))
+ if (auto maybeUuid = Uuid::from_chars(std::span(val.c_str(), val.storage_size())))
66
cmdline.uuid = *maybeUuid;
67
throw Parser::ValidationError("invalid uuid");
68
0 commit comments