forked from boostorg/unordered
Remove a few unused parameters.
[SVN r55921]
This commit is contained in:
@ -635,7 +635,7 @@ namespace boost { namespace unordered_detail {
|
||||
|
||||
template <class H, class P, class A, class K>
|
||||
inline bool hash_unique_table<H, P, A, K>
|
||||
::group_equals(node_ptr it1, node_ptr it2, set_extractor*)
|
||||
::group_equals(node_ptr, node_ptr, set_extractor*)
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
@ -41,7 +41,7 @@ namespace boost { namespace unordered_detail {
|
||||
: structure(), allocators_(h.allocators_) {}
|
||||
|
||||
template <class A, class G>
|
||||
hash_table_manager<A, G>::hash_table_manager(hash_table_manager& x, move_tag m)
|
||||
hash_table_manager<A, G>::hash_table_manager(hash_table_manager& x, move_tag)
|
||||
: structure(), allocators_(x.allocators_)
|
||||
{
|
||||
this->buckets_ = x.buckets_;
|
||||
@ -55,7 +55,7 @@ namespace boost { namespace unordered_detail {
|
||||
}
|
||||
|
||||
template <class A, class G>
|
||||
hash_table_manager<A, G>::hash_table_manager(hash_table_manager& x, value_allocator const& a, move_tag m) :
|
||||
hash_table_manager<A, G>::hash_table_manager(hash_table_manager& x, value_allocator const& a, move_tag) :
|
||||
structure(), allocators_(a,a)
|
||||
{
|
||||
if(this->node_alloc() == x.node_alloc()) {
|
||||
|
@ -10,6 +10,7 @@ project unordered-test/unordered
|
||||
<toolset>intel-linux:"<cxxflags>-strict_ansi -cxxlib-icc"
|
||||
<toolset>gcc:<cxxflags>"-Wsign-promo -Wunused-parameter"
|
||||
#<toolset>msvc:<cxxflags>/W4
|
||||
<warnings>all
|
||||
;
|
||||
|
||||
test-suite unordered
|
||||
|
Reference in New Issue
Block a user