* Clear a GRF Config list, freeing all nodes. * @param config Start of the list. * @post \a config is set to \c nullptr. */
| 322 | * @post \a config is set to \c nullptr. |
| 323 | */ |
| 324 | void ClearGRFConfigList(GRFConfigList &config) |
| 325 | { |
| 326 | config.clear(); |
| 327 | } |
| 328 | |
| 329 | /** |
| 330 | * Append a GRF Config list onto another list. |
no test coverage detected