-
Notifications
You must be signed in to change notification settings - Fork 109
Open
Labels
Level: Intermediate (3)Plugin: C++Issues related to the parsing and presentation of C++ projects.Issues related to the parsing and presentation of C++ projects.
Milestone
Description
In the VisitMemberExpr() function an entry is added for accessing members. However, if this is a method call, then it is already inserted as a function call. So in this case adding it to the database as a member expression is unnecessary:
obj->func(); // Function call and member expression. The latter one is unnecessary.
obj->func; // Only a member expression. It is fine.Metadata
Metadata
Assignees
Labels
Level: Intermediate (3)Plugin: C++Issues related to the parsing and presentation of C++ projects.Issues related to the parsing and presentation of C++ projects.
Type
Projects
Status
To do