[libcxx-commits] [libcxx] [libc++][math] Add `constexpr` to classification / comparison functions (PR #210075)
Lucas Mellone via libcxx-commits
libcxx-commits at lists.llvm.org
Mon Jul 20 06:17:48 PDT 2026
================
@@ -0,0 +1,95 @@
+//===----------------------------------------------------------------------===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
+//
+//===----------------------------------------------------------------------===//
+
+// bool isgreater(floating-point-type x, floating-point-type y); // constexpr since C++23
+
+// We don't control the implementation on windows
+// UNSUPPORTED: windows
+
----------------
lknknm wrote:
Confirmed Windows tests are passing.
https://github.com/llvm/llvm-project/pull/210075
More information about the libcxx-commits
mailing list