mirror of
https://github.com/boostorg/move.git
synced 2025-07-30 12:27:14 +02:00
Merge pull request #58 from stbergmann/c++26-vararg-comma
Avoid -Wdeprecated-variadic-comma-omission with GCC 15 trunk -std=c++26
This commit is contained in:
@ -497,7 +497,7 @@ struct is_unary_function_impl<R (*)(T0)>
|
||||
{ static const bool value = true; };
|
||||
|
||||
template <typename R, class T0>
|
||||
struct is_unary_function_impl<R (*)(T0...)>
|
||||
struct is_unary_function_impl<R (*)(T0, ...)>
|
||||
{ static const bool value = true; };
|
||||
|
||||
#else // BOOST_MOVE_TT_TEST_MSC_FUNC_SIGS
|
||||
@ -519,7 +519,7 @@ struct is_unary_function_impl<R (__cdecl*)(T0)>
|
||||
{ static const bool value = true; };
|
||||
|
||||
template <typename R, class T0>
|
||||
struct is_unary_function_impl<R (__cdecl*)(T0...)>
|
||||
struct is_unary_function_impl<R (__cdecl*)(T0, ...)>
|
||||
{ static const bool value = true; };
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user