diff --git a/src/lib/meta/virtual-copy-support.hpp b/src/lib/meta/virtual-copy-support.hpp index fee8effa4..0e502f579 100644 --- a/src/lib/meta/virtual-copy-support.hpp +++ b/src/lib/meta/virtual-copy-support.hpp @@ -200,9 +200,6 @@ namespace meta{ D& src = static_cast (*this); new(targetStorage) D(move(src)); } - - using I::copyInto; - using I::moveInto; }; @@ -216,9 +213,6 @@ namespace meta{ D const& src = static_cast (*this); new(targetStorage) D(src); } - - using I::copyInto; - using I::moveInto; }; @@ -241,9 +235,6 @@ namespace meta{ D& s = static_cast (*this); t = move(s); } - - using I::copyInto; - using I::moveInto; };