]> git.stg.codes - stg.git/blobdiff - stargazer/plugins/other/radius/config.cpp
Remove x2str/unsigned2str in favor of std::to_string.
[stg.git] / stargazer / plugins / other / radius / config.cpp
index 79822852a8ec9a59d2102d84929bb30e7e2740f0..0b486b349ece6e617a8254d357e919e34c9985b3 100644 (file)
@@ -41,7 +41,7 @@ struct ParserError : public std::runtime_error
           error(message)
     {}
     ParserError(size_t pos, const std::string& message)
-        : runtime_error("Parsing error at position " + x2str(pos) + ". " + message),
+        : runtime_error("Parsing error at position " + std::to_string(pos) + ". " + message),
           position(pos),
           error(message)
     {}