diff --git a/dune/common/typetraits.hh b/dune/common/typetraits.hh index 534196b2ea92e7b56747c78beea2737efe8a5d92..ff4bace324ac7d715ec0e3f6f8857fc608d56764 100644 --- a/dune/common/typetraits.hh +++ b/dune/common/typetraits.hh @@ -136,11 +136,11 @@ namespace Dune }; template<bool B, class T = void> - struct DUNE_DEPRECATED_MSG("Use std::enable_if instead!") enable_if + struct enable_if {}; template<class T> - struct DUNE_DEPRECATED_MSG("Use std::enable_if instead!") enable_if<true,T> + struct enable_if<true,T> { typedef DUNE_DEPRECATED_MSG("Use std::enable_if instead!") T type; };