Browse Source

Warning suppression in test.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@131344 91177308-0d34-0410-b5e6-96231b3b80d8
Howard Hinnant 14 years ago
parent
commit
f6cc833ae7
1 changed files with 0 additions and 2 deletions
  1. 0 2
      test/numerics/rand/rand.adapt/rand.adapt.shuf/eval.pass.cpp

+ 0 - 2
test/numerics/rand/rand.adapt/rand.adapt.shuf/eval.pass.cpp

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