From a17a0b882b7fcab71d4503772c747d5c5740e7fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Sun, 22 Apr 2012 22:54:18 +0000 Subject: [PATCH] Fixed clang warnings and errors [SVN r78149] --- example/doc_clone_ptr.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/example/doc_clone_ptr.cpp b/example/doc_clone_ptr.cpp index 280c94c..56c0816 100644 --- a/example/doc_clone_ptr.cpp +++ b/example/doc_clone_ptr.cpp @@ -30,6 +30,8 @@ class Base virtual Base *clone() const { return new Base(*this); } + + virtual ~Base(){} }; class Member