Explorar el Código

COMP: Removed unused parameter warning.

Brad King hace 21 años
padre
commit
60c904a58e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Source/kwsys/hashtable.hxx.in

+ 1 - 1
Source/kwsys/hashtable.hxx.in

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