commit | e428a7f6b89625eb153f5346fe85a656803b92a2 | [log] [tgz] |
---|---|---|
author | Henry Schreiner <henryschreineriii@gmail.com> | Thu Jul 23 21:16:54 2020 -0400 |
committer | Henry Schreiner <HenrySchreinerIII@gmail.com> | Sun Jul 26 09:25:27 2020 -0400 |
tree | 53e382a10d8b3223d46b608fc787857726a42341 | |
parent | 6a80171c42cbb13ffaefeb3f6a7ff53be0856e86 [diff] [blame] |
ci: fix clang warnings
diff --git a/tests/test_call_policies.cpp b/tests/test_call_policies.cpp index fd24557..26c83f8 100644 --- a/tests/test_call_policies.cpp +++ b/tests/test_call_policies.cpp
@@ -46,6 +46,7 @@ class Parent { public: Parent() { py::print("Allocating parent."); } + Parent(const Parent& parent) = default; ~Parent() { py::print("Releasing parent."); } void addChild(Child *) { } Child *returnChild() { return new Child(); }