| 39 | } |
| 40 | |
| 41 | inline void invalidConversion(const Type* readType, const Type* fileType) { |
| 42 | throw SchemaEvolutionError("Cannot convert from " + fileType->toString() + " to " + |
| 43 | readType->toString()); |
| 44 | } |
| 45 | |
| 46 | struct EnumClassHash { |
| 47 | template <typename T> |
no test coverage detected