git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Public interfaces: part 2
[stg.git]
/
stargazer
/
plugins
/
configuration
/
sgconfig
/
dumphelpers.h
diff --git
a/stargazer/plugins/configuration/sgconfig/dumphelpers.h
b/stargazer/plugins/configuration/sgconfig/dumphelpers.h
index cc02d14d64c471b0c51025912d623536ebfb0833..86bf197e0d22d6941ce788b1ff6013d305505786 100644
(file)
--- a/
stargazer/plugins/configuration/sgconfig/dumphelpers.h
+++ b/
stargazer/plugins/configuration/sgconfig/dumphelpers.h
@@
-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