summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/hash.cpp
diff options
context:
space:
mode:
author Roberto Fresca <robbie@robertofresca.com>2018-10-19 00:35:32 +0200
committer Roberto Fresca <robbie@robertofresca.com>2018-10-19 00:35:32 +0200
commitefe1757a858f03fff73e110626e85af8d2ed7d03 (patch)
tree5433f1344a7120f3d90f9480e79c65ca850b7564 /src/lib/util/hash.cpp
parentcdb4ae2fab56a624bf8e2ea59f19a57f11ff1109 (diff)
parentf1b3e649fb0a50a6a01da667278b8a62fef99d92 (diff)
Merge branch 'master' of https://github.com/mamedev/mame
Diffstat (limited to 'src/lib/util/hash.cpp')
-rw-r--r--src/lib/util/hash.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/util/hash.cpp b/src/lib/util/hash.cpp
index 4593ad181a4..ddb6f52ac5c 100644
--- a/src/lib/util/hash.cpp
+++ b/src/lib/util/hash.cpp
@@ -20,15 +20,15 @@ namespace util {
// GLOBAL VARIABLES
//**************************************************************************
-const char hash_collection::HASH_CRC;
-const char hash_collection::HASH_SHA1;
+char const hash_collection::HASH_CRC;
+char const hash_collection::HASH_SHA1;
-const char *hash_collection::HASH_TYPES_CRC = "R";
-const char *hash_collection::HASH_TYPES_CRC_SHA1 = "RS";
-const char *hash_collection::HASH_TYPES_ALL = "RS";
+char const *const hash_collection::HASH_TYPES_CRC = "R";
+char const *const hash_collection::HASH_TYPES_CRC_SHA1 = "RS";
+char const *const hash_collection::HASH_TYPES_ALL = "RS";
-const char hash_collection::FLAG_NO_DUMP;
-const char hash_collection::FLAG_BAD_DUMP;
+char const hash_collection::FLAG_NO_DUMP;
+char const hash_collection::FLAG_BAD_DUMP;