summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBruce Guenter <bruce@untroubled.org>2005-11-02 16:50:37 +0000
committerBruce Guenter <bruce@untroubled.org>2005-11-02 16:50:37 +0000
commita2cfd3adb3650e4fadfda84ec6c4436035a5d889 (patch)
tree560837457b52f3dc749cf2a4ad1a560a200e0e00 /lib
parente24ff7d1187fff34bacee4b3e9f68494a3fb1f1e (diff)
Fixed compile error in lib/list.h
Diffstat (limited to 'lib')
-rw-r--r--lib/list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/list.h b/lib/list.h
index a292dc0..3bbd750 100644
--- a/lib/list.h
+++ b/lib/list.h
@@ -18,8 +18,8 @@ public:
typedef list_node<T> node;
typedef list_iterator<T> iter;
typedef const_list_iterator<T> const_iter;
- friend class iter;
- friend class const_iter;
+ friend class list_iterator<T>;
+ friend class const_list_iterator<T>;
list()
: head(0), tail(0), cnt(0)