[libcxx-commits] [libcxx] [libc++] Make `constexpr std::variant`. Implement P2231R1 (PR #83335)
via libcxx-commits
libcxx-commits at lists.llvm.org
Wed Mar 6 02:07:30 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;
----------------
huixie90 wrote:
ah I see. thanks!
https://github.com/llvm/llvm-project/pull/83335
More information about the libcxx-commits
mailing list