This commit is contained in:
John
2023-11-04 09:31:08 +01:00
parent 607fc00c0e
commit 077d09b620
13 changed files with 38 additions and 33 deletions
+1 -1
View File
@@ -499,7 +499,7 @@ bool StringReplacers::set(const string& key, const string& value, bool removeRep
}
void StringReplacers::set(const string& key, int value) {
std::ostringstream str;
ostringstream str;
str << static_cast<signed>(value);
m_constants[key] = str.str();
}