mirror of https://github.com/CGAL/cgal
Import fix for narrowing conversions from the relevant LWG issue
This commit is contained in:
parent
599b23129e
commit
6ea5914309
|
|
@ -83,7 +83,7 @@ inline
|
|||
cpp0x::array< T, 1 + sizeof...(Args) >
|
||||
make_array(const T & t, const Args & ... args)
|
||||
{
|
||||
cpp0x::array< T, 1 + sizeof...(Args) > a = { { t, args... } };
|
||||
cpp0x::array< T, 1 + sizeof...(Args) > a = { { t, static_cast<T>(args)... } };
|
||||
return a;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue