This commit is contained in:
EternalPhane 2018-02-03 17:12:09 +08:00
parent d027f00aca
commit 6b8e9824a6
3 changed files with 2 additions and 4 deletions

View File

@ -179,3 +179,4 @@ YYYY/MM/DD, github id, Full name, email
2017/12/01, SebastianLng, Sebastian Lang, sebastian.lang@outlook.com
2017/12/03, oranoran, Oran Epelbaum, oran / epelbaum me
2017/12/27, jkmar, Jakub Marciniszyn, marciniszyn.jk@gmail.com
2018/01/29, EternalPhane, Zongyuan Zuo, eternalphane@gmail.com

View File

@ -11,6 +11,3 @@ Any::~Any()
{
delete _ptr;
}
Any::Base::~Base() {
}

View File

@ -105,7 +105,7 @@ private:
struct Cloneable<std::vector<T, A>> : std::is_copy_constructible<T> {};
struct Base {
virtual ~Base();
virtual ~Base() {};
virtual Base* clone() const = 0;
};