diff options
author | 2018-10-19 00:35:32 +0200 | |
---|---|---|
committer | 2018-10-19 00:35:32 +0200 | |
commit | efe1757a858f03fff73e110626e85af8d2ed7d03 (patch) | |
tree | 5433f1344a7120f3d90f9480e79c65ca850b7564 /src/lib/util/hash.cpp | |
parent | cdb4ae2fab56a624bf8e2ea59f19a57f11ff1109 (diff) | |
parent | f1b3e649fb0a50a6a01da667278b8a62fef99d92 (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.cpp | 14 |
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; |