| 207 | } |
| 208 | |
| 209 | bool LASzip::check_compressor(const U16 compressor) |
| 210 | { |
| 211 | if (compressor < LASZIP_COMPRESSOR_TOTAL_NUMBER_OF) return true; |
| 212 | char error[64]; |
| 213 | snprintf(error, sizeof(error), "compressor %d not supported", compressor); |
| 214 | return return_error(error); |
| 215 | } |
| 216 | |
| 217 | bool LASzip::check_coder(const U16 coder) |
| 218 | { |
nothing calls this directly
no outgoing calls
no test coverage detected