Skip to content

Commit a4b4f64

Browse files
authored
Merge pull request #81 from Romain-Geissler-1A/fix-unused-parameter-warning
Fix unused parameter warning in detail/signal_template.hpp
2 parents 898c81a + 4f34284 commit a4b4f64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/boost/signals2/detail/signal_template.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ namespace boost
775775
private:
776776
// explicit private copy constructor to avoid compiler trying to do implicit conversions to signal
777777
explicit BOOST_SIGNALS2_SIGNAL_CLASS_NAME(BOOST_SIGNALS2_NUM_ARGS)(
778-
const BOOST_SIGNALS2_SIGNAL_CLASS_NAME(BOOST_SIGNALS2_NUM_ARGS) & other) BOOST_NOEXCEPT
778+
const BOOST_SIGNALS2_SIGNAL_CLASS_NAME(BOOST_SIGNALS2_NUM_ARGS) &) BOOST_NOEXCEPT
779779
{
780780
// noncopyable
781781
BOOST_ASSERT(false);

0 commit comments

Comments
 (0)