non_comparable.h 218 B

123456789101112
  1. #ifndef ENTT_COMMON_NON_COMPARABLE_H
  2. #define ENTT_COMMON_NON_COMPARABLE_H
  3. namespace test {
  4. struct non_comparable {
  5. bool operator==(const non_comparable &) const noexcept = delete;
  6. };
  7. } // namespace test
  8. #endif