X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/27266b5280c04292ca621da13f36ba70cac403bb..393d6e8e0a108dbca6a0ef2dde96f23be2ce2987:/stglibs/common.lib/include/stg/common.h diff --git a/stglibs/common.lib/include/stg/common.h b/stglibs/common.lib/include/stg/common.h index 80d32aba..eb0d14a6 100644 --- a/stglibs/common.lib/include/stg/common.h +++ b/stglibs/common.lib/include/stg/common.h @@ -112,7 +112,11 @@ int str2x(const std::string & str, varT & x); template const std::string & x2str(varT x, std::string & s); template +const std::string & x2str(varT x) { std::string s; return x2str(x, s); } +template const std::string & unsigned2str(varT x, std::string & s); +template +const std::string & unsigned2str(varT x) { std::string s; return unsigned2str(x, s); } //----------------------------------------------------------------------------- template