From b98b2037658a8a9cba724aac18fd31e43ae0a906 Mon Sep 17 00:00:00 2001 From: syntheticpp Date: Thu, 26 Jan 2006 14:28:59 +0000 Subject: [PATCH] remove wrong 'typename' git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@520 7ec92016-0320-0410-acc4-a06ded1c099a --- include/loki/Pimpl.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/include/loki/Pimpl.h b/include/loki/Pimpl.h index f1398e7..c80fb23 100755 --- a/include/loki/Pimpl.h +++ b/include/loki/Pimpl.h @@ -205,8 +205,8 @@ namespace Loki typedef typename LOKI_DEFAULT_CONSTNESS::Type ConstPtr; typedef typename LOKI_DEFAULT_CONSTNESS::Type ConstImpl; #else // default: enable - typedef typename const Ptr ConstPtr; - typedef typename const Impl ConstImpl; + typedef const Ptr ConstPtr; + typedef const Impl ConstImpl; #endif public: @@ -378,6 +378,9 @@ namespace Loki #endif // $Log$ +// Revision 1.14 2006/01/26 14:28:59 syntheticpp +// remove wrong 'typename' +// // Revision 1.13 2006/01/23 17:22:49 syntheticpp // add support of deep constness, only supported by (future) Loki::SmartPtr, not supported by boost::shared_ptr and plain pointer. Maybe deep constness forces a redesign of Pimpl. Is there a way to support deep constness by a rimpl? //