diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-17 23:01:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-17 23:02:20 +0300 |
commit | f06a985adff1ec54e7a6c3753d8dfd077b5dd37d (patch) | |
tree | 3cdf5fbc98b47c51205e950110d9a6cd31096e23 /tests/testsrc/good/final1.h | |
parent | 1a8ab0421d23125830ba3aac4d8b7910c257be16 (diff) | |
download | mplint-f06a985adff1ec54e7a6c3753d8dfd077b5dd37d.tar.gz mplint-f06a985adff1ec54e7a6c3753d8dfd077b5dd37d.tar.bz2 mplint-f06a985adff1ec54e7a6c3753d8dfd077b5dd37d.tar.xz mplint-f06a985adff1ec54e7a6c3753d8dfd077b5dd37d.zip |
Add checks for A_DEFAULT_COPY / A_DELETE_COPY.
Also fix error in detection for final/notfinal classes.
Diffstat (limited to 'tests/testsrc/good/final1.h')
-rw-r--r-- | tests/testsrc/good/final1.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testsrc/good/final1.h b/tests/testsrc/good/final1.h index c66c08a..913384f 100644 --- a/tests/testsrc/good/final1.h +++ b/tests/testsrc/good/final1.h @@ -22,10 +22,12 @@ class Test1 notfinal { + A_DELETE_COPY(Test1) } class Test2 final : public Test1 { + A_DELETE_COPY(Test2) } |