There's a few models which use identifier naming schemes which are reserved by the implementation. Examples:
- Dynamic Mass Body:
dry_mass_revert__consumable_mass.
- Table Lookup Transpose Data: filename has a double underscore (
table_lookup__transpose_data.hh), which results in an include guard which violates the double underscore rule.
- Target Relative Parameters: several local variables.
Fix all instances and re-enable the clang-tidy bugprone-reserved-identifier warning.
There's a few models which use identifier naming schemes which are reserved by the implementation. Examples:
dry_mass_revert__consumable_mass.table_lookup__transpose_data.hh), which results in an include guard which violates the double underscore rule.Fix all instances and re-enable the
clang-tidybugprone-reserved-identifier warning.