aboutsummaryrefslogtreecommitdiff
path: root/common/hash-ptr.h
diff options
context:
space:
mode:
authorBastien Bouclet2017-09-24 19:09:40 +0200
committerBastien Bouclet2017-09-30 21:35:16 +0200
commitfd19e2fc15405935ff6e3ef56edc3aab92323529 (patch)
treedc5c07cda4e538954404481fbd624cc381212ece /common/hash-ptr.h
parent55f46d36671b1ceb23b06a7ce00627379352f9ca (diff)
downloadscummvm-rg350-fd19e2fc15405935ff6e3ef56edc3aab92323529.tar.gz
scummvm-rg350-fd19e2fc15405935ff6e3ef56edc3aab92323529.tar.bz2
scummvm-rg350-fd19e2fc15405935ff6e3ef56edc3aab92323529.zip
COMMON: Introduce a shared hash function for pointer types
Diffstat (limited to 'common/hash-ptr.h')
-rw-r--r--common/hash-ptr.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/common/hash-ptr.h b/common/hash-ptr.h
new file mode 100644
index 0000000000..1099478c3b
--- /dev/null
+++ b/common/hash-ptr.h
@@ -0,0 +1,43 @@
+/* ScummVM - Graphic Adventure Engine
+ *
+ * ScummVM is the legal property of its developers, whose names
+ * are too numerous to list here. Please refer to the COPYRIGHT
+ * file distributed with this source distribution.
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef COMMON_HASH_PTR_H
+#define COMMON_HASH_PTR_H
+
+#include "common/func.h"
+
+namespace Common {
+
+/**
+ * Partial specialization of the Hash functor to be able to use pointers as HashMap keys
+ */
+template<typename T>
+struct Hash<T *> {
+ uint operator()(T * const &v) const {
+ uint x = static_cast<uint>(reinterpret_cast<uintptr>(v));
+ return x + (x >> 3);
+ }
+};
+
+} // End of namespace Common
+
+#endif