Merge pull request #817 from mp3butcher/patch-30

remove return of local pointer
This commit is contained in:
OpenSceneGraph git repository 2019-08-16 09:34:19 +01:00 committed by GitHub
commit d38589ff7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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