Files
Towards/external/entt/test/common/non_comparable.h
Martin Slachta a04f0dc262 initial
2026-07-18 14:31:15 +02:00

13 lines
209 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 = delete;
};
} // namespace test
#endif