You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I fail to see the operator== function anywhere, neither within the class's functions (that's kinda obvious), nor between the functions in the namespace.
What do I miss here?
Thanks,
The text was updated successfully, but these errors were encountered:
I fail to see the operator== function anywhere, neither within the class's functions (that's kinda obvious), nor between the functions in the namespace.
Dunno. CppAst.NET was initially not developed to support C++, so it might miss many stuffs like this. You would have to debug/add support for it in a PR.
Hi,
does CppAst support friend functions defined within the class itself? E.g. something like this:
class Foo
{
public:
friend bool operator==(const Foo & lhs, const Foo & rhs);
};
I fail to see the operator== function anywhere, neither within the class's functions (that's kinda obvious), nor between the functions in the namespace.
What do I miss here?
Thanks,
The text was updated successfully, but these errors were encountered: