From 82fb83b706054fb807b4cd8422d4b2c6f1eb17eb Mon Sep 17 00:00:00 2001 From: heck Date: Thu, 3 Jun 2021 19:46:51 +0200 Subject: [PATCH] Test: pEpTestTree - TestModel forgot virtual (baseclass maybe not even needed) --- test/pEpTest/src/pEpTestModel.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pEpTest/src/pEpTestModel.hh b/test/pEpTest/src/pEpTestModel.hh index 5f1d06a..dfe1b4c 100644 --- a/test/pEpTest/src/pEpTestModel.hh +++ b/test/pEpTest/src/pEpTestModel.hh @@ -12,7 +12,7 @@ namespace pEp { public: pEpTestModel() = delete; pEpTestModel(const std::string& name); - const std::string& getName() const; + virtual const std::string& getName() const; private: const std::string name;