update boost

This commit is contained in:
2023-11-24 12:56:13 -06:00
parent cfc99971af
commit 19d727037a
9260 changed files with 849256 additions and 299957 deletions

View File

@@ -18,8 +18,11 @@ namespace boost { namespace msm { namespace back
// helper to replace std::plus as the lack of implicit conversion makes it not usable in one of our bind
template<class _Ty,class _Tz>
struct plus2
: public std::binary_function<_Ty, _Tz, _Ty>
{
typedef _Ty first_argument_type;
typedef _Tz second_argument_type;
typedef _Ty result_type;
// functor for operator+
_Ty operator()( _Ty _Left, _Tz _Right) const
{