test: cleanup

This commit is contained in:
skypjack
2026-02-20 10:31:54 +01:00
parent 3b3638ac8a
commit 41a8a7d921

View File

@@ -7,15 +7,9 @@ namespace test {
struct pointer_stable {
static constexpr auto in_place_delete = true;
[[nodiscard]] constexpr bool operator==(const pointer_stable &other) const noexcept = default;
[[nodiscard]] constexpr auto operator<=>(const pointer_stable &other) const noexcept = default;
int value{};
[[nodiscard]] constexpr bool operator==(const pointer_stable &other) const noexcept {
return value == other.value;
}
[[nodiscard]] constexpr auto operator<=>(const pointer_stable &other) const noexcept {
return value <=> other.value;
}
};
} // namespace test