diff options
Diffstat (limited to 'src/lib/util/hash.cpp')
-rw-r--r-- | src/lib/util/hash.cpp | 8 |
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; - //************************************************************************** |