From 073cc060e9594cf61bb556d4576689742648caef Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 10 Mar 2009 02:41:35 +0000 Subject: [PATCH] Fixed warning in list code svn-id: r39287 --- common/list_intern.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/list_intern.h b/common/list_intern.h index 79e2deb939b..772ca649f79 100644 --- a/common/list_intern.h +++ b/common/list_intern.h @@ -45,7 +45,7 @@ namespace ListInternal { Node(const T &x) : _data(x) {} }; - template class ConstIterator; + template struct ConstIterator; template struct Iterator {