diff options
author | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2018-12-19 19:10:30 +0200 |
---|---|---|
committer | Mikhail Pozdnyakov <mikhail.pozdnyakov@mapbox.com> | 2018-12-20 09:50:14 +0200 |
commit | cf6c97ad687921596f53846905a786f8e73351ce (patch) | |
tree | b80533ee2cbe40bc907c0557040795b453bc8835 /src | |
parent | 033d16ba8614d7d5541cf69a05074398e35ad699 (diff) | |
download | qtlocation-mapboxgl-cf6c97ad687921596f53846905a786f8e73351ce.tar.gz |
[core] Remove fnv_hash.hpp
Diffstat (limited to 'src')
-rw-r--r-- | src/mbgl/util/fnv_hash.hpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/mbgl/util/fnv_hash.hpp b/src/mbgl/util/fnv_hash.hpp deleted file mode 100644 index 87d4661c56..0000000000 --- a/src/mbgl/util/fnv_hash.hpp +++ /dev/null @@ -1,11 +0,0 @@ -#pragma once - -namespace mbgl { -namespace util { - -inline constexpr uint64_t hashFNV1a(const char * str, uint64_t value = 0xcbf29ce484222325) { - return str[0] ? hashFNV1a(str + 1, (value ^ uint64_t(str[0])) * 0x100000001b3) : value; -} - -} // end namespace util -} // end namespace mbgl |