]> git.stg.codes - stg.git/blobdiff - sgconf/actions.h
Remove x2str/unsigned2str in favor of std::to_string.
[stg.git] / sgconf / actions.h
index 08dc177eb9d3eadc575a3427260eec6d4aba376a..69407de22f54f6e40c76efae9367c5f1637d7be9 100644 (file)
@@ -109,7 +109,7 @@ template <typename T>
 inline
 std::string PARAM_ACTION<T>::DefaultDescription() const
 {
-return m_hasDefault ? " (default: '" + x2str(m_defaltValue) + "')"
+return m_hasDefault ? " (default: '" + std::to_string(m_defaltValue) + "')"
                     : "";
 }