From 0c142215b990ca2616e97fe8587b8f7062c7f83a Mon Sep 17 00:00:00 2001 From: Julien Valentin Date: Thu, 15 Aug 2019 20:21:15 +0200 Subject: [PATCH] remove return of local pointer --- include/osg/io_utils | 1 - 1 file changed, 1 deletion(-) diff --git a/include/osg/io_utils b/include/osg/io_utils index 95768c90c..857810adf 100644 --- a/include/osg/io_utils +++ b/include/osg/io_utils @@ -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(); } };