### Affected rules - `A7-1-7` ### Description From: https://github.com/github/codeql-coding-standards/issues/383 The AUTOSAR rule does not mention function declarations, and including them causes false positives with single line function declarations. ### Example ```cpp void example_function() { foo(); } ```