| 31 | // Common errors in parsing columnar format. |
| 32 | struct ArrayInterfaceErrors { |
| 33 | static char const *Contiguous() { return "Memory should be contiguous."; } |
| 34 | static char const *TypestrFormat() { |
| 35 | return "`typestr' should be of format <endian><type><size of type in bytes>."; |
| 36 | } |
no outgoing calls