diff options
Diffstat (limited to 'tests/testsrc/good/formatting.cpp')
-rw-r--r-- | tests/testsrc/good/formatting.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/testsrc/good/formatting.cpp b/tests/testsrc/good/formatting.cpp index 6d4d47a..5e1c6fe 100644 --- a/tests/testsrc/good/formatting.cpp +++ b/tests/testsrc/good/formatting.cpp @@ -25,6 +25,7 @@ class Test1 final { public: + A_DELETE_COPY(Test1); Test1::Test1() { } @@ -33,6 +34,7 @@ class Test1 final struct Test2 final { protected: + A_DELETE_COPY(Test2); Test2::Test2() : data1(), data2() @@ -42,6 +44,7 @@ struct Test2 final struct Test3 final { + A_DEFAULT_COPY(Test3); private: Test3::Test3() : data1(), @@ -59,6 +62,8 @@ struct ParticleTimer final { } + A_DELETE_COPY(ParticleTimer); + Particle *particle; int endTime; Particle *const particle; |