2
0
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:
Steven Watanabe
2009-11-16 23:38:21 +00:00
parent 6e35d9a732
commit 330c6db3cb

View File

@@ -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>