2
0
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:
Matias Capeletto
2012-04-23 13:58:46 +00:00
parent 270b06b06e
commit 0c115d87f3
2 changed files with 2 additions and 2 deletions

2
include/boost/bimap/views/unconstrained_map_view.hpp Executable file → Normal file
View 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
View 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;