diff options
author | Clive Lin <clive@FreeBSD.org> | 2004-08-01 08:53:57 +0000 |
---|---|---|
committer | Clive Lin <clive@FreeBSD.org> | 2004-08-01 08:53:57 +0000 |
commit | ca43881a49a86f86f7cbb3f91bc34ff48fc50c90 (patch) | |
tree | b932ddef3acf5761d25236efb8724945489053cc /mail/nullmailer | |
parent | 08314a31dad0eb9e9774e2dd0ce15cde9be41464 (diff) |
Post gcc 3.4.2 fixup.
Notes
Notes:
svn path=/head/; revision=115191
Diffstat (limited to 'mail/nullmailer')
-rw-r--r-- | mail/nullmailer/files/patch-lib-list.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/mail/nullmailer/files/patch-lib-list.h b/mail/nullmailer/files/patch-lib-list.h new file mode 100644 index 000000000000..f4244c8cf168 --- /dev/null +++ b/mail/nullmailer/files/patch-lib-list.h @@ -0,0 +1,35 @@ +--- lib/list.h~ Sun Aug 1 15:46:43 2004 ++++ lib/list.h Sun Aug 1 16:26:21 2004 +@@ -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>; + + 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> |