| 6886 | }; |
| 6887 | |
| 6888 | void LAStransform::check_for_overflow() const |
| 6889 | { |
| 6890 | U32 i; |
| 6891 | for (i = 0; i < num_operations; i++) |
| 6892 | { |
| 6893 | if (operations[i]->get_overflow()) |
| 6894 | { |
| 6895 | char command[4096]; |
| 6896 | operations[i]->get_command(command); |
| 6897 | LASMessage(LAS_WARNING, "total of %lld overflows caused by '%s'", operations[i]->get_overflow(), command); |
| 6898 | } |
| 6899 | } |
| 6900 | } |
| 6901 | |
| 6902 | void LAStransform::clean() |
| 6903 | { |
no test coverage detected