diff options
author | Filippos Karapetis | 2009-04-11 09:31:54 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-04-11 09:31:54 +0000 |
commit | cf052e5a96f31f2a595639ff9e4b2512c59c574f (patch) | |
tree | 3008386486d5b0d0e1914a52edee8d260cabc9de | |
parent | 02ca56eec864c6e4e74b614a9d4be6c331e99eef (diff) | |
download | scummvm-rg350-cf052e5a96f31f2a595639ff9e4b2512c59c574f.tar.gz scummvm-rg350-cf052e5a96f31f2a595639ff9e4b2512c59c574f.tar.bz2 scummvm-rg350-cf052e5a96f31f2a595639ff9e4b2512c59c574f.zip |
Fixed compilation (hopefully)
svn-id: r39926
-rw-r--r-- | engines/saga/list.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/saga/list.h b/engines/saga/list.h index c6789fec0c..5e643f0d28 100644 --- a/engines/saga/list.h +++ b/engines/saga/list.h @@ -35,6 +35,8 @@ namespace Saga { template <class T> class SortedList : public Common::List<T> { public: + typedef typename Common::List<T>::iterator iterator; + typedef typename Common::List<T>::const_iterator const_iterator; typedef int (*CompareFunction) (const T& a, const T& b); iterator insert(const T& element, CompareFunction compareFunction) { |