Quellcode durchsuchen

bugfix : fix for Build problem on Mac OS 10.8.2.

Signed-off-by: Kim <Kulling>
Kim vor 12 Jahren
Ursprung
Commit
8213805dc6
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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