From 202890e0327c3c4b498b0f04d6aa09313d2eaf05 Mon Sep 17 00:00:00 2001 From: Jens Maurer Date: Fri, 12 Jan 2001 18:07:34 +0000 Subject: [PATCH] add typename to definition of (u)int_t::fast [SVN r8560] --- include/boost/integer.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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