diff options
author | Max Horn | 2004-03-28 13:02:28 +0000 |
---|---|---|
committer | Max Horn | 2004-03-28 13:02:28 +0000 |
commit | da400a38eda7b8a48c70ffe6ad03ea0df0233a14 (patch) | |
tree | a252ced76c5663d4d2754dba7e47f0b8c9dbc4c7 /backends/fs | |
parent | 9d89a5f5433b54e772b600e188c98218606da94a (diff) | |
download | scummvm-rg350-da400a38eda7b8a48c70ffe6ad03ea0df0233a14.tar.gz scummvm-rg350-da400a38eda7b8a48c70ffe6ad03ea0df0233a14.tar.bz2 scummvm-rg350-da400a38eda7b8a48c70ffe6ad03ea0df0233a14.zip |
Small tweaks for MIPSPro compiler
svn-id: r13397
Diffstat (limited to 'backends/fs')
-rw-r--r-- | backends/fs/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/fs/fs.h b/backends/fs/fs.h index 45abea5192..c6b35e6a02 100644 --- a/backends/fs/fs.h +++ b/backends/fs/fs.h @@ -149,7 +149,7 @@ public: /** * Sorted list of multiple file system nodes. E.g. the contents of a given directory. */ -class FSList : Common::List<FilesystemNode *> { +class FSList : private Common::List<FilesystemNode *> { public: class const_iterator { friend class FSList; |