5dffee
Index: boost/random/generate_canonical.hpp
5dffee
===================================================================
5dffee
--- boost/random/generate_canonical.hpp	(revision 85073)
5dffee
+++ boost/random/generate_canonical.hpp	(working copy)
5dffee
@@ -54,7 +54,6 @@
5dffee
     using std::floor;
5dffee
     BOOST_ASSERT((g.min)() == 0);
5dffee
     BOOST_ASSERT((g.max)() == 1);
5dffee
-    typedef typename URNG::result_type base_result;
5dffee
     std::size_t digits = std::numeric_limits<RealType>::digits;
5dffee
     std::size_t engine_bits = detail::generator_bits<URNG>::value();
5dffee
     std::size_t b = (std::min)(bits, digits);
5dffee
Index: boost/random/uniform_real_distribution.hpp
5dffee
===================================================================
5dffee
--- boost/random/uniform_real_distribution.hpp	(revision 85073)
5dffee
+++ boost/random/uniform_real_distribution.hpp	(working copy)
5dffee
@@ -36,7 +36,6 @@
5dffee
 {
5dffee
     for(;;) {
5dffee
         typedef T result_type;
5dffee
-        typedef typename Engine::result_type base_result;
5dffee
         result_type numerator = static_cast<T>(eng() - (eng.min)());
5dffee
         result_type divisor = static_cast<T>((eng.max)() - (eng.min)());
5dffee
         BOOST_ASSERT(divisor > 0);