aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schickel2008-04-02 02:15:47 +0000
committerJohannes Schickel2008-04-02 02:15:47 +0000
commita614273cf0526df1eb23fdc0025936b56120dfde (patch)
tree9f7d7303a9d63e0f31e7b717ec354f57138265e7
parentda9701d19b41705e39ead61bc56fed1439720216 (diff)
downloadscummvm-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.h2
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;