summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/hash.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-11-15 13:43:36 +1100
committer Vas Crabb <vas@vastheman.com>2020-11-15 13:43:36 +1100
commit253e7f1caeb36333d943cecffd6f985fdbad2a93 (patch)
tree5546b6cca8b89d5c15f678526d740af795543f59 /src/lib/util/hash.cpp
parent0fa8be1fb4596e5cac6d95d0dc03f2dc12eece96 (diff)
Remove some deprecated instantiations of static constexpr members (MSVC complains about them now)
Diffstat (limited to 'src/lib/util/hash.cpp')
-rw-r--r--src/lib/util/hash.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/lib/util/hash.cpp b/src/lib/util/hash.cpp
index 5808163b6b9..fd9f2c1d7cd 100644
--- a/src/lib/util/hash.cpp
+++ b/src/lib/util/hash.cpp
@@ -12,24 +12,20 @@
#include "hash.h"
#include "hashing.h"
+
#include <cctype>
namespace util {
+
//**************************************************************************
// GLOBAL VARIABLES
//**************************************************************************
-char const hash_collection::HASH_CRC;
-char const hash_collection::HASH_SHA1;
-
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";
-char const hash_collection::FLAG_NO_DUMP;
-char const hash_collection::FLAG_BAD_DUMP;
-
//**************************************************************************