From 8213805dc6556566a9f983e480e44038bdb75674 Mon Sep 17 00:00:00 2001 From: Kim Date: Sun, 17 Mar 2013 14:44:24 +0100 Subject: [PATCH] bugfix : fix for Build problem on Mac OS 10.8.2. Signed-off-by: Kim --- code/BoostWorkaround/boost/tuple/tuple.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/BoostWorkaround/boost/tuple/tuple.hpp b/code/BoostWorkaround/boost/tuple/tuple.hpp index b6466f590..562e12203 100644 --- a/code/BoostWorkaround/boost/tuple/tuple.hpp +++ b/code/BoostWorkaround/boost/tuple/tuple.hpp @@ -175,7 +175,7 @@ namespace boost { // Get a specific tuple element template typename detail::type_getter::type& get () { - return m.get(); + return m.template get(); } // ... and the const version