From 6c0643cdddfdfb7f5f86540220deee87f8009996 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Sun, 13 Dec 2009 11:26:14 +0200 Subject: Workaround for older g++ versions --- cutl/compiler/context.txx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'cutl/compiler') diff --git a/cutl/compiler/context.txx b/cutl/compiler/context.txx index 55a24f7..303781c 100644 --- a/cutl/compiler/context.txx +++ b/cutl/compiler/context.txx @@ -18,7 +18,7 @@ namespace cutl try { - return i->second.value (); + return i->second. template value (); } catch (container::any::typing const&) { @@ -37,7 +37,7 @@ namespace cutl try { - return i->second.value (); + return i->second. template value (); } catch (container::any::typing const&) { @@ -56,7 +56,7 @@ namespace cutl try { - return i->second.value (); + return i->second. template value (); } catch (container::any::typing const&) { @@ -74,7 +74,7 @@ namespace cutl map_.insert (map::value_type (key, value))); if (!r.second) - r.first->second.value () = value; + r.first->second. template value () = value; } catch (container::any::typing const&) { -- cgit v1.1