Merge pull request #32 from MarcelRaad/extra_semi

Fix -Wextra-semi clang warnings
This commit is contained in:
Frank Mori Hess 2019-02-25 10:23:10 -05:00 committed by GitHub
commit 4c1940709e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -658,7 +658,7 @@ namespace boost
BOOST_SIGNALS2_SIGNAL_CLASS_NAME(BOOST_SIGNALS2_NUM_ARGS)(const combiner_type &combiner_arg = combiner_type(),
const group_compare_type &group_compare = group_compare_type()):
_pimpl(new impl_class(combiner_arg, group_compare))
{};
{}
virtual ~BOOST_SIGNALS2_SIGNAL_CLASS_NAME(BOOST_SIGNALS2_NUM_ARGS)()
{
}
@ -670,7 +670,7 @@ namespace boost
{
using std::swap;
swap(_pimpl, other._pimpl);
};
}
BOOST_SIGNALS2_SIGNAL_CLASS_NAME(BOOST_SIGNALS2_NUM_ARGS) &
operator=(BOOST_SIGNALS2_SIGNAL_CLASS_NAME(BOOST_SIGNALS2_NUM_ARGS) && rhs)