When using clang::ParseAST on this code only (no more, no less)
class A : public B, public C
{
int field;
};
I'm not able to get informations about B and C, they seem completely ignored and are not present when looping with
CXXRecordDecl::bases_begin() / CXXRecordDecl::bases_end()
Can I find informations about these base declarations somewhere, even if they are obviously 'undefined symbols' ?