From: Frederic Bouvier Date: Sat, 21 Aug 2010 07:02:12 +0000 (+0200) Subject: std::string::c_str() is const X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c3133f020d257af9cdab6d6a88014327b1b8e58d;p=simgear.git std::string::c_str() is const --- diff --git a/simgear/misc/sg_path.hxx b/simgear/misc/sg_path.hxx index 535eef85..77b69ca3 100644 --- a/simgear/misc/sg_path.hxx +++ b/simgear/misc/sg_path.hxx @@ -131,7 +131,7 @@ public: * Get the path string * @return path in "C" string (ptr to char array) form. */ - const char* c_str() { return path.c_str(); } + const char* c_str() const { return path.c_str(); } /** * Determine if file exists by attempting to fopen it.