[libcxx-commits] [PATCH] D102181: [libc++] Remove some more unnecessary _VSTD::. NFCI.

Mark de Wever via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Tue May 11 09:30:03 PDT 2021


Mordante added a comment.

Interesting to see you even found some uses of `std::`.
LGTM!



================
Comment at: libcxx/test/std/numerics/rand/rand.eng/rand.eng.lcong/params.fail.cpp:27
     std::linear_congruential_engine<T, 1, 0, 1> e4;
-    // expected-error-re at random:* {{static_assert failed due to requirement 'std:{{.*}}:is_unsigned<int>::value' "_UIntType must be unsigned type"}}
+    // expected-error at random:* {{static_assert failed due to requirement 'is_unsigned<int>::value' "_UIntType must be unsigned type"}}
     std::linear_congruential_engine<int, 0, 0, 0> e5;
----------------
Nice catch!


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D102181/new/

https://reviews.llvm.org/D102181



More information about the libcxx-commits mailing list