- Notifications
You must be signed in to change notification settings - Fork70
Closed
Description
Affected rules
DCL5-CPP
Description
Anyuse of__func__ is being flagged adeclaration/definition of__func__. This is because our model treats uses of__func__ as aLocalVariable declarations (!).
I think we should just excludeLocalVariables called__func__ from the query results.
Example
voidtest() { __func__; }