MCPcopy Create free account
hub / github.com/LASzip/LASzip / check_coder

Method check_coder

src/laszip.cpp:217–223  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215}
216
217bool 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
225bool LASzip::check_item(const LASitem* item)
226{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected