mirror of
https://github.com/Expand-sys/CCash
synced 2025-12-17 00:22:14 +11:00
8 lines
148 B
C++
8 lines
148 B
C++
#pragma once
|
|
#include <string>
|
|
#include <xxhash.h>
|
|
|
|
struct xxHashStringGen
|
|
{
|
|
XXH64_hash_t operator()(const std::string &str) const noexcept;
|
|
};
|