Skip to content
Snippets Groups Projects
Commit 6cbf3fba authored by Brad King's avatar Brad King
Browse files

COMP: Removed unused parameter warning.

parent 2c19afdc
No related branches found
No related tags found
No related merge requests found
......@@ -232,7 +232,7 @@ public:
typedef T value_type;
hash_allocator() throw(): alloc_() {}
hash_allocator(const hash_allocator_base& a) throw() : alloc_() {}
hash_allocator(const hash_allocator_base&) throw() : alloc_() {}
hash_allocator(const hash_allocator& a) throw() : alloc_(a.alloc_) {}
hash_allocator(const alloc_type& a) throw() : alloc_(a) {}
~hash_allocator() throw() {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment