Prechádzať zdrojové kódy

Warning suppression in test.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@131344 91177308-0d34-0410-b5e6-96231b3b80d8
Howard Hinnant 14 rokov pred
rodič
commit
f6cc833ae7

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