From fc2e5fc06330956721c667067b76b188e08c70d5 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sun, 6 Jul 2014 01:37:11 +0200 Subject: [PATCH] fix documentation about requirement for min and max value The assert has been fixed in an earlier commit. --- include/boost/random/uniform_real_distribution.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/random/uniform_real_distribution.hpp b/include/boost/random/uniform_real_distribution.hpp index 437ee6933..61fde23b9 100644 --- a/include/boost/random/uniform_real_distribution.hpp +++ b/include/boost/random/uniform_real_distribution.hpp @@ -148,7 +148,7 @@ class uniform_real_distribution * Constructs a uniform_real_distribution. @c min and @c max are * the parameters of the distribution. * - * Requires: min <= max + * Requires: min < max */ explicit uniform_real_distribution( RealType min_arg = RealType(0.0),