From 6b64cd88b8f3891efffd1f987c8de1f159830429 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sat, 17 May 2003 08:36:25 +0000 Subject: [PATCH] Removed superfluous const --- include/osgDB/Output | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/osgDB/Output b/include/osgDB/Output index 2803dfa4b..cbd8f9626 100644 --- a/include/osgDB/Output +++ b/include/osgDB/Output @@ -74,9 +74,9 @@ class OSGDB_EXPORT Output : public std::ofstream }; inline void setPathNameHint(const PathNameHint pnh) { _pathNameHint = pnh; } - inline const PathNameHint getPathNameHint() const { return _pathNameHint; } + inline PathNameHint getPathNameHint() const { return _pathNameHint; } - virtual const std::string getFileNameForOutput(const std::string& filename) const; + virtual std::string getFileNameForOutput(const std::string& filename) const; protected: