Replace std::to_string with locale-independent alternative

This commit is contained in:
Ben Woosley
2020-02-12 23:01:45 -05:00
parent 58c72880ff
commit d056df033a
19 changed files with 71 additions and 58 deletions

View File

@@ -894,7 +894,7 @@ struct ArgsMergeTestingSetup : public BasicTestingSetup {
if (action == SECTION_SET || action == SECTION_NEGATE) prefix = section + ".";
if (action == SET || action == SECTION_SET) {
for (int i = 0; i < 2; ++i) {
values.push_back(prefix + name + "=" + value_prefix + std::to_string(++suffix));
values.push_back(prefix + name + "=" + value_prefix + ToString(++suffix));
}
}
if (action == NEGATE || action == SECTION_NEGATE) {