From c3133f020d257af9cdab6d6a88014327b1b8e58d Mon Sep 17 00:00:00 2001 From: Frederic Bouvier Date: Sat, 21 Aug 2010 09:02:12 +0200 Subject: [PATCH] std::string::c_str() is const --- simgear/misc/sg_path.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.39.5