diff options
Diffstat (limited to 'util/hash.h')
-rw-r--r-- | util/hash.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util/hash.h b/util/hash.h index 8889d56..87ab279 100644 --- a/util/hash.h +++ b/util/hash.h @@ -7,13 +7,13 @@ #ifndef STORAGE_LEVELDB_UTIL_HASH_H_ #define STORAGE_LEVELDB_UTIL_HASH_H_ -#include <stddef.h> -#include <stdint.h> +#include <cstddef> +#include <cstdint> namespace leveldb { -extern uint32_t Hash(const char* data, size_t n, uint32_t seed); +uint32_t Hash(const char* data, size_t n, uint32_t seed); -} +} // namespace leveldb #endif // STORAGE_LEVELDB_UTIL_HASH_H_ |