1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Linux fix

This commit is contained in:
Brian Fiete 2025-04-07 15:08:57 -04:00
parent c3ad1b9ed1
commit bdf32875ff

View file

@ -119,13 +119,13 @@ typedef Rect<double> RectD;
typedef Rect<float> RectF;
typedef Rect<int32> RectI32;
NS_BF_END;
template <>
struct BeefHash<RectI32>
struct BeefHash<Beefy::RectI32>
{
size_t operator()(RectI32 val)
size_t operator()(Beefy::RectI32 val)
{
return (size_t)val.x * 4790557 + (size_t)val.y * 6578863 + (size_t)val.width * 6273881 + (size_t)val.height * 9501077;
}
};
NS_BF_END;