Reputation: 631
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
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