[libcxx-commits] [libcxx] [libc++] Make `constexpr std::variant`. Implement P2231R1 (PR #83335)

Mark de Wever via libcxx-commits libcxx-commits at lists.llvm.org
Sun Mar 3 09:14:46 PST 2024


================
@@ -22,88 +22,108 @@
 #include "test_macros.h"
 
 struct NoCopy {
-  NoCopy(const NoCopy &) = delete;
-  NoCopy &operator=(const NoCopy &) = default;
+  NoCopy(const NoCopy&)            = delete;
----------------
mordante wrote:

We only did the source files. Not the tests and I'm not sure about the benchmarks.

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


More information about the libcxx-commits mailing list