Another try

This commit is contained in:
Nikolai Kochetov 2021-08-11 20:49:19 +03:00
parent 2117278f88
commit 79290f8e2e
3 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@
#if defined(ARCADIA_BUILD)
#define HASH_FUN_H <unordered_map>
template <typename T>
struct THash : public std::hash<T> {};
struct THash;
#endif
#include <sparsehash/dense_hash_map>

View File

@ -3,7 +3,7 @@
#if defined(ARCADIA_BUILD)
#define HASH_FUN_H <unordered_map>
template <typename T>
struct THash : public std::hash<T> {};
struct THash;
#endif
#include <sparsehash/dense_hash_set>

View File

@ -3,7 +3,7 @@
#if defined(ARCADIA_BUILD)
#define HASH_FUN_H <unordered_map>
template <typename T>
struct THash : public std::hash<T> {};
struct THash;
#endif
#include <sparsehash/sparse_hash_map>