Convert ToStr, Serialise, and TypeName to use literal strings

This commit is contained in:
baldurk
2019-05-15 14:12:17 +01:00
parent c8a518f05c
commit 699f8753af
84 changed files with 1215 additions and 1186 deletions
+1 -1
View File
@@ -32,7 +32,7 @@
// so we implement it here using ostringstream. It's not great, but this is a very uncommon path -
// either for invalid values or for when a new enum is added and the code isn't updated
template <>
std::string DoStringise(const uint32_t &el)
rdcstr DoStringise(const uint32_t &el)
{
std::ostringstream oss;
oss << el;