Просмотр исходного кода

COMP: Removed unused parameter warning.

Brad King 21 лет назад
Родитель
Сommit
60c904a58e
1 измененных файлов с 1 добавлено и 1 удалено
  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() {}