Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStijn Buys <ingar@osirion.org>2008-03-15 19:53:06 +0000
committerStijn Buys <ingar@osirion.org>2008-03-15 19:53:06 +0000
commit11acb6ebad36c20de5f22fb5b7edbf11d8b29254 (patch)
tree46c91c2be5fd5e00be06b2e3d6e6874779d8a094 /src/filesystem
parent517d35b2bbaeb3ee4b7e29301cd41bb58628bf3e (diff)
fixes compile error with gcc 4.1.2 (20061115)
Diffstat (limited to 'src/filesystem')
-rw-r--r--src/filesystem/inifile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filesystem/inifile.h b/src/filesystem/inifile.h
index 568eade..6503053 100644
--- a/src/filesystem/inifile.h
+++ b/src/filesystem/inifile.h
@@ -78,7 +78,7 @@ public:
}
/// return true of the ini file is open for reading
- inline bool is_open() const { return inifile_ifs.is_open(); }
+ inline bool is_open() { return inifile_ifs.is_open(); }
/// current filename
inline std::string const & name() const {return inifile_name; }