diff --git a/sprout/random/uniform_smallint.hpp b/sprout/random/uniform_smallint.hpp index 5d1bc398..4f801f85 100644 --- a/sprout/random/uniform_smallint.hpp +++ b/sprout/random/uniform_smallint.hpp @@ -271,12 +271,10 @@ namespace sprout { } template SPROUT_CXX14_CONSTEXPR result_type operator()(Engine& eng, param_type const& parm) const { - typedef typename Engine::result_type base_result; return uniform_smallint(parm)(eng); } template SPROUT_CONSTEXPR sprout::random::random_result const operator()(Engine const& eng, param_type const& parm) const { - typedef typename Engine::result_type base_result; return uniform_smallint(parm)(eng); } template