[libcxx-commits] [libcxx] [llvm] [libc++][CI] Update to Clang-20 (PR #108761)

Hristo Hristov via libcxx-commits libcxx-commits at lists.llvm.org
Sun Sep 15 09:11:24 PDT 2024


================
@@ -25,8 +25,7 @@ constexpr bool test_signed() {
   constexpr auto minVal = std::numeric_limits<IntegerT>::min();
   constexpr auto maxVal = std::numeric_limits<IntegerT>::max();
 
-  // TODO(LLVM-20) remove [[maybe_unused]]  since all supported compilers support "Placeholder variables with no name"
-  [[maybe_unused]] std::same_as<IntegerT> decltype(auto) _ = std::add_sat(minVal, maxVal);
+  std::same_as<IntegerT> decltype(auto) _ = std::add_sat(minVal, maxVal);
----------------
Zingam wrote:

Please don't do this here I have a complete an proper PR here: https://github.com/llvm/llvm-project/pull/101826

https://github.com/llvm/llvm-project/pull/108761


More information about the libcxx-commits mailing list