]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/sgconfig/dumphelpers.h
Move projects back into subfolder.
[stg.git] / projects / stargazer / plugins / configuration / sgconfig / dumphelpers.h
index cc02d14d64c471b0c51025912d623536ebfb0833..86bf197e0d22d6941ce788b1ff6013d305505786 100644 (file)
@@ -73,13 +73,13 @@ class Dumper
 
         std::string twoDigit(int value) const
         {
-            std::string res = x2str(value);
+            std::string res = std::to_string(value);
             if (res.length() < 2)
                 res = "0" + res;
             return res;
         }
 };
 
-} // namespace Caster
+} // namespace STG
 
 #endif