| 148 | // error |
| 149 | |
| 150 | void UArray_unsupported_with_(const UArray *self, const char *methodName, |
| 151 | const UArray *other) { |
| 152 | // UArray_error_(self, "Error: '%s' not supported between '%s' and '%s'\n"); |
| 153 | printf("Error: '%s' not supported between '%s' and '%s'\n", methodName, |
| 154 | CTYPE_name(self->itemType), CTYPE_name(other->itemType)); |
| 155 | exit(-1); |
| 156 | } |
| 157 | |
| 158 | void UArray_error_(const UArray *self, char *e) { |
| 159 | printf("%s\n", e); |
nothing calls this directly
no test coverage detected