Files
entt/test/common/non_comparable.h
2026-01-09 15:32:42 +01:00

13 lines
218 B
C++

#ifndef ENTT_COMMON_NON_COMPARABLE_H
#define ENTT_COMMON_NON_COMPARABLE_H
namespace test {
struct non_comparable {
bool operator==(const non_comparable &) const noexcept = delete;
};
} // namespace test
#endif