From 7df74064dc760aedfebd4f61c43b5683a9bfef18 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 29 Apr 2015 17:47:37 +1000 Subject: [PATCH] traits: remove deprecated auto_ptr specialisation --- types/traits.hpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/types/traits.hpp b/types/traits.hpp index 1433392b..606d4b67 100644 --- a/types/traits.hpp +++ b/types/traits.hpp @@ -26,7 +26,6 @@ template struct is_dereferencable : std::true_type { }; template struct is_dereferencable> : std::true_type { }; template struct is_dereferencable> : std::true_type { }; template struct is_dereferencable> : std::true_type { }; -template struct is_dereferencable> : std::true_type { }; template struct dereferenced_type { @@ -41,7 +40,6 @@ template struct dereferenced_type { template struct dereferenced_type> { typedef T type; }; template struct dereferenced_type> { typedef T type; }; template struct dereferenced_type> { typedef T type; }; -template struct dereferenced_type> { typedef T type; }; ///----------------------------------------------------------------------------