| 112 | std::vector<std::vector<std::vector<SimpleConfig>>> subconfig_tensor; |
| 113 | |
| 114 | bool operator==(const NestedContainerConfig& other) const { |
| 115 | return (this->map_of_subconfig_arrays == other.map_of_subconfig_arrays) && |
| 116 | (this->subconfig_tensor == other.subconfig_tensor); |
| 117 | } |
| 118 | }; |
| 119 | |
| 120 | void check_json_against_struct(const json::Node& json, const NestedContainerConfig& cfg) { |
nothing calls this directly
no outgoing calls
no test coverage detected