From: David C. <unc...@us...> - 2005-03-30 17:16:30
|
Update of /cvsroot/adobe-source/sandbox/adobe-source/adobe/future In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15112/sandbox/adobe-source/adobe/future Modified Files: memory.hpp Log Message: const_pointer_type fix for gcc Index: memory.hpp =================================================================== RCS file: /cvsroot/adobe-source/sandbox/adobe-source/adobe/future/memory.hpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** memory.hpp 19 Mar 2005 00:16:42 -0000 1.1 --- memory.hpp 30 Mar 2005 17:15:54 -0000 1.2 *************** *** 137,141 **** typedef T element_type; typedef T* pointer_type; ! typedef const T* const_pointer_type; template <class U> struct rebind { typedef adobe::ptr_traits<U> other; }; --- 137,141 ---- typedef T element_type; typedef T* pointer_type; ! typedef const pointer_type const_pointer_type; template <class U> struct rebind { typedef adobe::ptr_traits<U> other; }; |