aboutsummaryrefslogtreecommitdiff
path: root/mail/nullmailer/files/patch-lib-list.h
diff options
context:
space:
mode:
Diffstat (limited to 'mail/nullmailer/files/patch-lib-list.h')
-rw-r--r--mail/nullmailer/files/patch-lib-list.h30
1 files changed, 4 insertions, 26 deletions
diff --git a/mail/nullmailer/files/patch-lib-list.h b/mail/nullmailer/files/patch-lib-list.h
index f4244c8cf168..fc634a31af51 100644
--- a/mail/nullmailer/files/patch-lib-list.h
+++ b/mail/nullmailer/files/patch-lib-list.h
@@ -1,35 +1,13 @@
---- lib/list.h~ Sun Aug 1 15:46:43 2004
-+++ lib/list.h Sun Aug 1 16:26:21 2004
+--- lib/list.h~ Sat Mar 5 01:16:28 2005
++++ lib/list.h Sat Mar 5 01:13:35 2005
@@ -18,8 +18,8 @@
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>;
++ friend class list_iterator<T>;;
++ friend class const_list_iterator<T>;;
list()
: head(0), tail(0), cnt(0)
-@@ -111,8 +111,8 @@
- }
- private:
- const list<T>& lst;
-- const list<T>::node* prev;
-- const list<T>::node* curr;
-+ const typename list<T>::node* prev;
-+ const typename list<T>::node* curr;
- };
-
- template<class T>
-@@ -164,8 +164,8 @@
- }
- private:
- list<T>& lst;
-- list<T>::node* prev;
-- list<T>::node* curr;
-+ typename list<T>::node* prev;
-+ typename list<T>::node* curr;
- };
-
- template<class T>