We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab1bbcc commit 3c5c821Copy full SHA for 3c5c821
1 file changed
include/tactile/core/math/vec.hpp
@@ -5,6 +5,7 @@
5
6
#include "tactile/core/concepts.hpp"
7
#include "tactile/core/primitives.hpp"
8
+#include "tactile/core/util/hash.hpp"
9
10
namespace tactile {
11
@@ -92,3 +93,6 @@ using Vec2F = Vec2<float32>;
92
93
using Vec2D = Vec2<float64>;
94
95
} // namespace tactile
96
+
97
+TACTILE_IMPL_HASH(::tactile::Vec2F, value.x, value.y);
98
+TACTILE_IMPL_HASH(::tactile::Vec2D, value.x, value.y);
0 commit comments