summaryrefslogtreecommitdiff
path: root/tests/Map_Manager_Test_Key.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Map_Manager_Test_Key.h')
-rw-r--r--tests/Map_Manager_Test_Key.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/Map_Manager_Test_Key.h b/tests/Map_Manager_Test_Key.h
deleted file mode 100644
index 7e8b9811922..00000000000
--- a/tests/Map_Manager_Test_Key.h
+++ /dev/null
@@ -1,22 +0,0 @@
-class KEY
-// ============================================================================
-// = TITLE
-// Define a key for use with the Map_Manager_Test.
-//
-// = DESCRIPTION
-// This class gets its own header file to work around AIX C++
-// compiler "features" related to template instantiation... It is
-// only used by Map_Manager_Test.cpp
-// ============================================================================
-{
-public:
- KEY (size_t v = 0): value_ (v)
- { }
-
- size_t hash (void) const { return this->value_; }
- operator size_t () const { return this->value_; }
-
-private:
- size_t value_;
-};
-