diff options
Diffstat (limited to 'src/point.hpp')
-rw-r--r-- | src/point.hpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/point.hpp b/src/point.hpp index 10963c22..bd9c66ca 100644 --- a/src/point.hpp +++ b/src/point.hpp @@ -20,8 +20,6 @@ struct point constexpr point(); constexpr point(global_coords coord, Vector2b offset); constexpr point(chunk_coords_ coord, local_coords tile, Vector2b offset); - constexpr point(const point& other); - constexpr point& operator=(const point& other); constexpr bool operator==(const point&) const noexcept; friend constexpr std::strong_ordering operator<=>(const point& a, const point& b); @@ -48,9 +46,6 @@ constexpr point::point(global_coords coord, Vector2b offset) : point{coord.chunk constexpr point::point(chunk_coords_ coord, local_coords tile, Vector2b offset) : cx{coord.x}, cy{coord.y}, cz{coord.z}, tile{tile}, _offset{offset} {} -constexpr point::point(const point& other) = default; -constexpr point& point::operator=(const point& other) = default; - constexpr bool point::operator==(const point&) const noexcept = default; constexpr std::strong_ordering operator<=>(const point& p1, const point& p2) |