X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/c02633d77cb05a5deb05440d77b12ccc5bc19b85..a91e9542b384905187890f161d4da5396996fcfd:/projects/sgconf/utils.h diff --git a/projects/sgconf/utils.h b/projects/sgconf/utils.h index 6168cbf2..3a57d999 100644 --- a/projects/sgconf/utils.h +++ b/projects/sgconf/utils.h @@ -1,45 +1,45 @@ #pragma once #include "stg/common.h" -#include "stg/optional.h" #include #include +#include namespace SGCONF { template inline -void MaybeSet(const std::map & options, const std::string & name, STG::Optional & res) +void MaybeSet(const std::map & options, const std::string & name, std::optional & res) { -std::map::const_iterator it(options.find(name)); -if (it == options.end()) - return; -T value; -if (str2x(it->second, value) < 0) - return; -res = value; + std::map::const_iterator it(options.find(name)); + if (it == options.end()) + return; + T value; + if (str2x(it->second, value) < 0) + return; + res = value; } template inline void MaybeSet(const std::map & options, const std::string & name, T & res, F conv) { -std::map::const_iterator it(options.find(name)); -if (it == options.end()) - return; -conv(it->second, res); + std::map::const_iterator it(options.find(name)); + if (it == options.end()) + return; + conv(it->second, res); } template <> inline -void MaybeSet(const std::map & options, const std::string & name, STG::Optional & res) +void MaybeSet(const std::map & options, const std::string & name, std::optional & res) { -std::map::const_iterator it(options.find(name)); -if (it == options.end()) - return; -res = it->second; + std::map::const_iterator it(options.find(name)); + if (it == options.end()) + return; + res = it->second; } } // namespace SGCONF