1
0
forked from boostorg/mp11

Remove usages of old style cast, use static_cast instead

This silences compiler warnings generated by GCC
This commit is contained in:
Ilya Popov
2023-06-23 16:58:51 +02:00
parent 3e84aef18e
commit 46c4e8a517
2 changed files with 2 additions and 2 deletions

View File

@ -309,7 +309,7 @@ template<template<class...> class L, class... T, template<class...> class L2, cl
{
template<class... W> static mp_identity<L<W...>> f( U*..., mp_identity<W>*... );
using R = decltype( f( (mp_identity<T>*)0 ... ) );
using R = decltype( f( static_cast<mp_identity<T>*>(0) ... ) );
using type = typename R::type;
};

View File

@ -74,7 +74,7 @@ template<template<class...> class M, class... T, class K> struct mp_map_find_imp
template<template<class...> class L, class... U> static mp_identity<L<K, U...>> f( mp_identity<L<K, U...>>* );
static mp_identity<void> f( ... );
using type = mpmf_unwrap< decltype( f((U*)0) ) >;
using type = mpmf_unwrap< decltype( f( static_cast<U*>(0) ) ) >;
};
} // namespace detail