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>2009-08-13 12:49:49 +0000
committerStijn Buys <ingar@osirion.org>2009-08-13 12:49:49 +0000
commita320e55dc1a17cef3923643277f1112f74251d70 (patch)
tree617768887dff8a2779ec22e3413486d9ef142f49 /src/model/asefile.h
parentd79f51d227cdc6ef71517ed2476041f3a9ed4d36 (diff)
documentation updates, win32 build fix, megatog's enginelight patch
Diffstat (limited to 'src/model/asefile.h')
-rw-r--r--src/model/asefile.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/model/asefile.h b/src/model/asefile.h
index dc1516b..c792a9d 100644
--- a/src/model/asefile.h
+++ b/src/model/asefile.h
@@ -86,7 +86,10 @@ private:
inline const std::string &name() const { return asefile_name; }
- inline const bool is_open() const { return asefile_ifs.is_open(); }
+ inline bool is_open()
+ {
+ return asefile_ifs.is_open();
+ }
std::string asefile_name;