zengine-old/engine/3rdparty/zlib/include/zstd/table.h

6 lines
176 B
C
Raw Normal View History

2024-05-12 23:44:11 +08:00
#pragma once
#include <unordered_map>
namespace zstd {
template<typename T1, typename T2, typename Hasher = std::hash<T1>>
using table = std::unordered_map<T1, T2, Hasher>;
}