id summary reporter owner description type status milestone component version severity resolution keywords cc 5749 bimap: unused parameter warning in unconstrained_map_view constructor timb@… Matias Capeletto "With warnings enabled, the constructor for `boost::bimaps::views::unconstrained_map_view` generates an unused-parameter warning: {{{ unconstrained_map_view(const T & t) {} }}} Trivial patch: {{{ --- boost/bimap/views/unconstrained_map_view.hpp +++ boost/bimap/views/unconstrained_map_view.hpp @@ -29,7 +29,7 @@ { public: template< class T > - unconstrained_map_view(const T & t) {} + unconstrained_map_view(const T &) {} typedef void reference; typedef void const_reference; }}}" Bugs closed To Be Determined bimap Boost 1.39.0 Problem fixed