diff options
author | Stijn Buys <ingar@osirion.org> | 2008-03-15 19:53:06 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2008-03-15 19:53:06 +0000 |
commit | 11acb6ebad36c20de5f22fb5b7edbf11d8b29254 (patch) | |
tree | 46c91c2be5fd5e00be06b2e3d6e6874779d8a094 | |
parent | 517d35b2bbaeb3ee4b7e29301cd41bb58628bf3e (diff) |
fixes compile error with gcc 4.1.2 (20061115)
-rw-r--r-- | src/filesystem/inifile.h | 2 |
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; } |