mirror of
https://github.com/boostorg/bimap.git
synced 2026-01-19 04:02:10 +00:00
[Bimap] Solve unused constructor parameter warning (Fix 5749)
[SVN r78159]
This commit is contained in:
2
include/boost/bimap/views/unconstrained_map_view.hpp
Executable file → Normal file
2
include/boost/bimap/views/unconstrained_map_view.hpp
Executable file → Normal file
@@ -29,7 +29,7 @@ class unconstrained_map_view
|
||||
{
|
||||
public:
|
||||
template< class T >
|
||||
unconstrained_map_view(const T & t) {}
|
||||
unconstrained_map_view(const T &) {}
|
||||
|
||||
typedef void reference;
|
||||
typedef void const_reference;
|
||||
|
||||
2
include/boost/bimap/views/unconstrained_set_view.hpp
Executable file → Normal file
2
include/boost/bimap/views/unconstrained_set_view.hpp
Executable file → Normal file
@@ -29,7 +29,7 @@ class unconstrained_set_view
|
||||
{
|
||||
public:
|
||||
template< class T >
|
||||
unconstrained_set_view(const T & t) {}
|
||||
unconstrained_set_view(const T &) {}
|
||||
|
||||
typedef void iterator;
|
||||
typedef void const_iterator;
|
||||
|
||||
Reference in New Issue
Block a user