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