No, it's in a header like usual. This is not isolated to this class anyways, it looks like Find Symbol only shows the first found overload of any method.
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.
Thank you for the details. I was able to reproduce both problems and I've added steps to the case. These will be a good guide of what kind of problems are you seeing.