| 6900 | } |
| 6901 | |
| 6902 | void LAStransform::clean() |
| 6903 | { |
| 6904 | U32 i; |
| 6905 | for (i = 0; i < num_operations; i++) |
| 6906 | { |
| 6907 | delete operations[i]; |
| 6908 | } |
| 6909 | if (operations) |
| 6910 | delete[] operations; |
| 6911 | transformed_fields = 0; |
| 6912 | alloc_operations = 0; |
| 6913 | num_operations = 0; |
| 6914 | operations = 0; |
| 6915 | if (filter) |
| 6916 | { |
| 6917 | delete filter; |
| 6918 | filter = 0; |
| 6919 | } |
| 6920 | } |
| 6921 | |
| 6922 | void LAStransform::usage() const |
| 6923 | { |
nothing calls this directly
no outgoing calls
no test coverage detected