From 7b82d553889a9123aa38ae8a21054d509ef6375d Mon Sep 17 00:00:00 2001 From: syntheticpp Date: Mon, 2 Jan 2006 10:43:22 +0000 Subject: [PATCH] gcc fix git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@393 7ec92016-0320-0410-acc4-a06ded1c099a --- include/loki/Functor.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/loki/Functor.h b/include/loki/Functor.h index 4ba1872..fff1f60 100644 --- a/include/loki/Functor.h +++ b/include/loki/Functor.h @@ -1363,7 +1363,7 @@ namespace Loki struct BinderFirstBoundTypeStorage< Functor > { typedef Functor OriginalFunctor; - typedef typename const TypeTraits::ReferredType RefOrValue; + typedef const typename TypeTraits::ReferredType RefOrValue; };