fktn-k / fkYAML

A C++ header-only YAML library
MIT License
69 stars 7 forks source link

#123 Change naming conventions to lower_snake_case #124

Closed fktn-k closed 1 year ago

fktn-k commented 1 year ago

To enhance compatibility of naming conventions with existing STL implementation, almost all custom types in the project have been changed to the lower_snake_case format.
One exception is applied to template arguments because they are conventionally named in UpperCamelCase format.
Additionally, example codes in the README.md have also been changed to follow the changes in naming conventions.
The above changes gurantee no compatibility with the earlier version of the fkYAML library.

123