LLDB's DWARF parser has some heuristics for guessing and fixing up the accessibility
of C++ class/struct members after they were already created in the internal Clang AST.
The heuristic is that if a struct/class has a base class, then it's actually a class and it's
members are private unless otherwise specified.
From what I can see this heuristic isn't sound and also unnecessary. The idea that inheritance
implies that the class keyword was used and the default visibility is private is
incorrect. Also both GCC and Clang use DW_TAG_structure_type and DW_TAG_class_type
for struct and class types respectively, so the default visibility we infer from that
information is always correct and there is no need to fix it up.
And finally, the access specifiers we set in the Clang AST are anyway unused within LLDB.
The expression parser explicitly ignores them to give users access to private members
and there is not SBAPI functionality that exposes this information.
This patch removes all this code for the reasons above. This should be NFC.