1
0

fix: fix clap parser resolver build issue

This commit is contained in:
2025-12-09 23:11:06 +08:00
parent a1d19cf09c
commit c6d080ad82
5 changed files with 11 additions and 9 deletions

View File

@ -53,7 +53,7 @@ namespace yycc::carton::clap::parser {
if (value.has_value()) return value.value();
else return std::unexpected(NS_YYCC_CLAP_TYPES::ClapError::BadCast);
} else {
return std::unexpected(raw_value.error())
return std::unexpected(raw_value.error());
}
}
};