diff options
author | Brad King <brad.king@kitware.com> | 2005-05-05 13:09:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-05-05 13:09:38 (GMT) |
commit | 60c904a58e463fb33191b47bda13aa3a3d94390e (patch) | |
tree | 7c74c9881e2102cf631e69beb6b5a3c57c131693 /Source/kwsys/hashtable.hxx.in | |
parent | 69cf728623ce787c1059f4eedc82571b6e809f88 (diff) | |
download | CMake-60c904a58e463fb33191b47bda13aa3a3d94390e.zip CMake-60c904a58e463fb33191b47bda13aa3a3d94390e.tar.gz CMake-60c904a58e463fb33191b47bda13aa3a3d94390e.tar.bz2 |
COMP: Removed unused parameter warning.
Diffstat (limited to 'Source/kwsys/hashtable.hxx.in')
-rw-r--r-- | Source/kwsys/hashtable.hxx.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/kwsys/hashtable.hxx.in b/Source/kwsys/hashtable.hxx.in index da71257..e0465b7 100644 --- a/Source/kwsys/hashtable.hxx.in +++ b/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() {} |