Warning suppression in test.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@131344 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant 2011-05-14 15:38:08 +00:00
parent 783b810cae
commit f6cc833ae7

View File

@ -39,8 +39,6 @@ public:
explicit rand1(result_type sd = Min) : x_(sd)
{
if (x_ < Min)
x_ = Min;
if (x_ > Max)
x_ = Max;
}