Browse Source

bugfix : fix for Build problem on Mac OS 10.8.2.

Signed-off-by: Kim <Kulling>
Kim 12 years ago
parent
commit
8213805dc6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      code/BoostWorkaround/boost/tuple/tuple.hpp

+ 1 - 1
code/BoostWorkaround/boost/tuple/tuple.hpp

@@ -175,7 +175,7 @@ namespace boost	{
 		// Get a specific tuple element
 		template <unsigned N>
 		typename detail::type_getter<T0,0,typename very_long::next_type, N>::type& get ()	{
-			return m.get<N>();
+			return m.template get<N>();
 		}
 
 		// ... and the const version