Remove a few unused parameters.

[SVN r55921]
This commit is contained in:
Daniel James
2009-08-31 15:33:28 +00:00
parent ccc88ecf0a
commit 848b73f99f
3 changed files with 4 additions and 3 deletions

View File

@ -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;
}

View File

@ -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()) {

View File

@ -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