From a2cfd3adb3650e4fadfda84ec6c4436035a5d889 Mon Sep 17 00:00:00 2001 From: Bruce Guenter Date: Wed, 2 Nov 2005 16:50:37 +0000 Subject: [PATCH] Fixed compile error in lib/list.h --- NEWS | 1 + lib/list.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index f831d45..ce211a8 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,7 @@ This file lists all the major user-visible changes to nullmailer. ------------------------------------------------------------------------------- Changes in version 1.01 +- Fixed compile error in lib/list.h Development of this version has been sponsored by FutureQuest, Inc. ossi@FutureQuest.net http://www.FutureQuest.net/ 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 @@ template class list typedef list_node node; typedef list_iterator iter; typedef const_list_iterator const_iter; - friend class iter; - friend class const_iter; + friend class list_iterator; + friend class const_list_iterator; list() : head(0), tail(0), cnt(0)