[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 07:12:44 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:
For the future it would be nice to do the formatting is a separate patch/commit that makes it easier to see the real changes.
https://github.com/llvm/llvm-project/pull/83335
More information about the libcxx-commits
mailing list