remove return of local pointer

This commit is contained in:
Julien Valentin 2019-08-15 20:21:15 +02:00 committed by Robert Osfield
parent dcc6dce8e3
commit 0c142215b9

View File

@ -66,7 +66,6 @@ class MakeString
inline operator std::string () const { return sstream.str(); }
inline std::string str() const { return sstream.str(); }
inline const char* c_str() const { return sstream.str().c_str(); }
};