summaryrefslogtreecommitdiffstats
path: root/Source/kwsys
diff options
context:
space:
mode:
Diffstat (limited to 'Source/kwsys')
-rw-r--r--Source/kwsys/hashtable.hxx.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/kwsys/hashtable.hxx.in b/Source/kwsys/hashtable.hxx.in
index ee03051..9adf5c0 100644
--- a/Source/kwsys/hashtable.hxx.in
+++ b/Source/kwsys/hashtable.hxx.in
@@ -212,9 +212,9 @@ inline PIn hash_allocate_type(PIn (*)(TSize),
// Define the comparison operators in terms of a base type to avoid
// needing templated versions.
class hash_allocator_base {};
-bool operator==(const hash_allocator_base&,
+inline bool operator==(const hash_allocator_base&,
const hash_allocator_base&) throw() { return true; }
-bool operator!=(const hash_allocator_base&,
+inline bool operator!=(const hash_allocator_base&,
const hash_allocator_base&) throw() { return false; }
// Define the allocator template.