* Release the memory consumed by the specified feature. * @param Feature feature to be deallocated. * @return none * @note History: Mon May 21 13:33:27 1990, DSJ, Created. */
| 58 | * @note History: Mon May 21 13:33:27 1990, DSJ, Created. |
| 59 | */ |
| 60 | void FreeFeature(FEATURE Feature) { |
| 61 | if (Feature) { |
| 62 | free_struct (Feature, sizeof (FEATURE_STRUCT) |
| 63 | + sizeof (FLOAT32) * (Feature->Type->NumParams - 1), |
| 64 | "sizeof(FEATURE_STRUCT)+sizeof(FLOAT32)*(NumParamsIn(Feature)-1)"); |
| 65 | } |
| 66 | |
| 67 | } /* FreeFeature */ |
| 68 | |
| 69 | /** |
| 70 | * Release the memory consumed by the specified feature |
no test coverage detected