From ad6d5c2bedeebd1730baad68a94675606ac957e8 Mon Sep 17 00:00:00 2001 From: ganovelli Date: Mon, 5 Apr 2004 13:53:37 +0000 Subject: [PATCH] Aggiunto typename --- vcg/container/entries_allocation_table.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vcg/container/entries_allocation_table.h b/vcg/container/entries_allocation_table.h index b01f5cac..ee0be613 100644 --- a/vcg/container/entries_allocation_table.h +++ b/vcg/container/entries_allocation_table.h @@ -25,6 +25,9 @@ History $Log: not supported by cvs2svn $ +Revision 1.3 2004/03/31 22:36:44 ganovelli +First Working Release (with this comment) + /****************************************************************************/ #ifndef __VCGLIB_ENTRIES__ @@ -38,7 +41,7 @@ template struct EntryCATBase{ EntryCATBase(STL_CONT & _c):c(_c){}; -STL_CONT::value_type * Start() const; +typename STL_CONT::value_type * Start() const; virtual bool Empty(){}; const STL_CONT * C(); virtual void Push_back(const int &){};