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;
};