Open
Description
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,