diff --git a/dune/common/typetraits.hh b/dune/common/typetraits.hh index a0023c5f8b963f3b339ada0150fbac66be1fe479..1d08eb286a0c90e7955b2416ea44270ffdb1da2f 100644 --- a/dune/common/typetraits.hh +++ b/dune/common/typetraits.hh @@ -386,13 +386,13 @@ namespace Dune * if first is true this will be type T1 and * otherwise T2 */ - typedef T1 Type DUNE_DEPRECATED_MSG("Use Dune::conversion::type instead"); + typedef T1 Type DUNE_DEPRECATED_MSG("Use Dune::conditional::type instead"); } DUNE_DEPRECATED; template<class T1, class T2> struct SelectType<false,T1,T2> { - typedef T2 Type DUNE_DEPRECATED_MSG("Use Dune::conversion::type instead"); + typedef T2 Type DUNE_DEPRECATED_MSG("Use Dune::conditional::type instead"); }; /**