🎨 changed uint64_t -> XXH64_hash_t

This commit is contained in:
EntireTwix 2021-07-02 00:04:05 -07:00
parent 88a3d79f9c
commit e7f7f0f698
4 changed files with 7 additions and 7 deletions

View file

@ -6,16 +6,16 @@
struct User
{
uint32_t balance = 0;
uint64_t password;
XXH64_hash_t password;
#if MAX_LOG_SIZE > 0
Log log;
#endif
User(std::string &&init_pass) noexcept;
User(uint32_t init_bal, std::string &&init_pass) noexcept;
User(uint32_t init_bal, uint64_t init_pass) noexcept;
User(uint32_t init_bal, XXH64_hash_t init_pass) noexcept;
#if MAX_LOG_SIZE > 0
User(uint32_t init_bal, uint64_t init_pass, const Json::Value &log_j) noexcept;
User(uint32_t init_bal, XXH64_hash_t init_pass, const Json::Value &log_j) noexcept;
#endif
Json::Value Serialize() const; //to be removed later

View file

@ -4,5 +4,5 @@
struct xxHashStringGen
{
uint64_t operator()(const std::string &str) const noexcept;
XXH64_hash_t operator()(const std::string &str) const noexcept;
};

View file

@ -21,9 +21,9 @@ User::User(uint32_t init_bal, std::string &&init_pass) noexcept : balance(init_b
* @param init_bal
* @param init_pass
*/
User::User(uint32_t init_bal, uint64_t init_pass) noexcept : balance(init_bal), password(init_pass) {}
User::User(uint32_t init_bal, XXH64_hash_t init_pass) noexcept : balance(init_bal), password(init_pass) {}
#if MAX_LOG_SIZE > 0
User::User(uint32_t init_bal, uint64_t init_pass, const Json::Value &log_j) noexcept : balance(init_bal), password(init_pass)
User::User(uint32_t init_bal, XXH64_hash_t init_pass, const Json::Value &log_j) noexcept : balance(init_bal), password(init_pass)
{
if (log_j.size())
{

View file

@ -1,6 +1,6 @@
#include "xxhash_str.h"
uint64_t xxHashStringGen::operator()(const std::string &str) const noexcept
XXH64_hash_t xxHashStringGen::operator()(const std::string &str) const noexcept
{
return XXH3_64bits(str.data(), str.size());
}