Ticket #10064: comments_patch.diff

File comments_patch.diff, 852 bytes (added by harris.pc@…, 8 years ago)
  • boost/random/uniform_real_distribution.hpp

    diff --git a/boost/random/uniform_real_distribution.hpp b/boost/random/uniform_real_distribution.hpp
    index 437ee69..d8f8825 100644
    a b public:  
    9595        /**
    9696         * Constructs the parameters of a uniform_real_distribution.
    9797         *
    98          * Requires min <= max
     98         * Requires min < max
    9999         */
    100100        explicit param_type(RealType min_arg = RealType(0.0),
    101101                            RealType max_arg = RealType(1.0))
    public:  
    148148     * Constructs a uniform_real_distribution. @c min and @c max are
    149149     * the parameters of the distribution.
    150150     *
    151      * Requires: min <= max
     151     * Requires: min < max
    152152     */
    153153    explicit uniform_real_distribution(
    154154        RealType min_arg = RealType(0.0),