Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/boost/move/detail/unique_ptr_meta_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading