quote:
it looks like Find Symbol only shows the first found overload of any method.
I looked into this some more in a larger codebase and has found a case that fails - if one is inline and the other is not:
class OverloadTest
{
public:
void Method1();
void Method1(int a) {}
};
Although in your case something else is going on because non-of the overloads are inline.
Would it be possible to send the header file in where this occurs?
It would be kept private and only used for testing purposes. I know it's often not possible.
Otherwise, let's hope that when we got to this case, we may fix your case as well while doing general testing for this.