1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Linux fixes

This commit is contained in:
Brian Fiete 2020-12-14 09:24:45 -08:00
parent cdc030ab30
commit 52a441f486
5 changed files with 33 additions and 42 deletions

View file

@ -129,7 +129,11 @@ public:
~HashContext();
void Reset();
void Mixin(const void* data, int size);
void Mixin(const void* data, int size);
void Mixin(int val)
{
Mixin((void*)&val, (int)sizeof(val));
}
template <typename T>
void Mixin(const T& val)
{