From a8df94a7704a5d7470ebed9180f35da4a02045b0 Mon Sep 17 00:00:00 2001 From: angusj Date: Mon, 23 Jan 2023 12:47:24 +1000 Subject: [PATCH] fixing minor issue with previous commit --- CPP/Clipper2Lib/include/clipper2/clipper.engine.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CPP/Clipper2Lib/include/clipper2/clipper.engine.h b/CPP/Clipper2Lib/include/clipper2/clipper.engine.h index ecf53242..d1d16ff9 100644 --- a/CPP/Clipper2Lib/include/clipper2/clipper.engine.h +++ b/CPP/Clipper2Lib/include/clipper2/clipper.engine.h @@ -284,7 +284,7 @@ namespace Clipper2Lib { PolyPath* parent_; public: PolyPath(PolyPath* parent = nullptr): parent_(parent){} - //virtual ~PolyPath() {}; + virtual ~PolyPath() {}; //https://en.cppreference.com/w/cpp/language/rule_of_three PolyPath(const PolyPath&) = delete; PolyPath& operator=(const PolyPath&) = delete;