ci: fix clang warnings

This commit is contained in:
Henry Schreiner
2020-07-23 21:16:54 -04:00
committed by Henry Schreiner
parent 6a80171c42
commit e428a7f6b8
7 changed files with 37 additions and 4 deletions

View File

@@ -46,6 +46,7 @@ TEST_SUBMODULE(call_policies, m) {
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(); }