yaml_cpp_struct icon indicating copy to clipboard operation
yaml_cpp_struct copied to clipboard

It's easy to mapping yaml to cpp's struct

Results 1 yaml_cpp_struct issues
Sort by recently updated
recently updated
newest added

It seems like gives an error when deserializing nested structs that have optional fields. Example: ```cpp struct Child { std::optional age; // Error because couldn't find "age" }; struct Parent...