Add DoStringise overloads for strings, needed for asserts

This commit is contained in:
baldurk
2018-09-02 11:28:52 +01:00
parent 5152ad0307
commit 35aa60218a
+12
View File
@@ -744,6 +744,18 @@ void DoSerialise(SerialiserType &ser, SDObject *el)
/////////////////////////////////////////////////////////////
// Basic types
template <>
std::string DoStringise(const std::string &el)
{
return el;
}
template <>
std::string DoStringise(const rdcstr &el)
{
return el;
}
template <>
std::string DoStringise(void *const &el)
{