| 215 | } |
| 216 | |
| 217 | bool LASzip::check_coder(const U16 coder) |
| 218 | { |
| 219 | if (coder < LASZIP_CODER_TOTAL_NUMBER_OF) return true; |
| 220 | char error[64]; |
| 221 | snprintf(error, sizeof(error), "coder %d not supported", coder); |
| 222 | return return_error(error); |
| 223 | } |
| 224 | |
| 225 | bool LASzip::check_item(const LASitem* item) |
| 226 | { |
nothing calls this directly
no outgoing calls
no test coverage detected