diff --git a/include/boost/integer.hpp b/include/boost/integer.hpp index cc606bf..a5ef737 100644 --- a/include/boost/integer.hpp +++ b/include/boost/integer.hpp @@ -53,7 +53,7 @@ namespace boost (Bits-1 <= std::numeric_limits::digits) + (Bits-1 <= std::numeric_limits::digits) >::least least; - typedef int_fast_t::fast fast; + typedef typename int_fast_t::fast fast; }; // unsigned @@ -68,7 +68,7 @@ namespace boost (Bits <= std::numeric_limits::digits) + (Bits <= std::numeric_limits::digits) >::least least; - typedef int_fast_t::fast fast; + typedef typename int_fast_t::fast fast; }; // The same dispatching technique can be used to select types based on