| 1416 | |
| 1417 | template <class T> |
| 1418 | void CppAggregatesFx<T>::remove_array(const std::string& array_name) { |
| 1419 | if (!is_array(array_name)) |
| 1420 | return; |
| 1421 | |
| 1422 | vfs_.remove_dir(array_name); |
| 1423 | } |
| 1424 | |
| 1425 | template <class T> |
| 1426 | void CppAggregatesFx<T>::remove_array() { |
nothing calls this directly
no test coverage detected