Warning suppression in test.

llvm-svn: 131344
This commit is contained in:
Howard Hinnant 2011-05-14 15:38:08 +00:00
parent 3962348edf
commit af6c26b366
1 changed files with 0 additions and 2 deletions

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;
}