diff options
author | Johannes Schickel | 2008-04-02 02:15:47 +0000 |
---|---|---|
committer | Johannes Schickel | 2008-04-02 02:15:47 +0000 |
commit | a614273cf0526df1eb23fdc0025936b56120dfde (patch) | |
tree | 9f7d7303a9d63e0f31e7b717ec354f57138265e7 | |
parent | da9701d19b41705e39ead61bc56fed1439720216 (diff) | |
download | scummvm-rg350-a614273cf0526df1eb23fdc0025936b56120dfde.tar.gz scummvm-rg350-a614273cf0526df1eb23fdc0025936b56120dfde.tar.bz2 scummvm-rg350-a614273cf0526df1eb23fdc0025936b56120dfde.zip |
Oops forgot to enable friend statement.
svn-id: r31358
-rw-r--r-- | common/list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/list.h b/common/list.h index 29e02188d7..2fe07a5ccc 100644 --- a/common/list.h +++ b/common/list.h @@ -54,7 +54,7 @@ public: template <class t_T2> class Iterator { - //template<class T> friend class Iterator; + template<class T> friend class Iterator; friend class List<t_T>; NodeBase *_node; |