NOLINTBEGIN(misc-use-internal-linkage)
| 50 | |
| 51 | // NOLINTBEGIN(misc-use-internal-linkage) |
| 52 | BT_JSON_CONVERTER(Vector3D, v) |
| 53 | { |
| 54 | add_field("x", &v.x); |
| 55 | add_field("y", &v.y); |
| 56 | add_field("z", &v.z); |
| 57 | } |
| 58 | |
| 59 | BT_JSON_CONVERTER(Quaternion3D, v) |
| 60 | { |
nothing calls this directly
no outgoing calls
no test coverage detected