mirror of
https://github.com/boostorg/random.git
synced 2026-01-22 17:33:00 +00:00
Fix min/max problems
[SVN r57717]
This commit is contained in:
@@ -86,8 +86,8 @@ public:
|
||||
if(increment == 0 && _x == 0) {
|
||||
_x = 1;
|
||||
}
|
||||
assert(_x >= min());
|
||||
assert(_x <= max());
|
||||
assert(_x >= (min)());
|
||||
assert(_x <= (max)());
|
||||
}
|
||||
|
||||
template<class It>
|
||||
|
||||
Reference in New Issue
Block a user