Compare commits

..

2 commits

Author SHA1 Message Date
eriedaberrie 8b47a9d0f8 2024 day 16 2024-12-16 01:18:23 -08:00
eriedaberrie 456cf1ef3f Add C++ util file 2024-12-16 01:17:56 -08:00

View file

@ -105,6 +105,3 @@ template <> struct std::hash<Coord<ull>> {
return (c.x << (sizeof(std::size_t) / 2)) - c.x + c.y; return (c.x << (sizeof(std::size_t) / 2)) - c.x + c.y;
} }
}; };
typedef Coord<int> icoord;
typedef Coord<ull> ullcoord;