Jose
Jose

Reputation: 631

"Find all References" for operator overload in visual studio or other IDE

Im looking at some codes (in C++) and it gets quite confusing when there is operator overloading. Is there a simpler way to find out whether "()" or any other symbol is overloaded?

Upvotes: 1

Views: 871

Answers (1)

Johannes Schaub - litb
Johannes Schaub - litb

Reputation: 506925

KDevelop4 can do it. Test has a public constructor taking an int, so it shows its operator+ for all but the last use of operator+

Upvotes: 1

Related Questions