I don't know how many C++ coders might be out there, but I've been trying to get this question answered about multiple inheritance.
Say I have a class called B that inherits from A:
A -> B
Now, I create a class called C that, perhaps due to programmer unfamiliarity with the library, multiply-inherits from both A and B like this:
A -> B -> C <- A
Is C++ going to barf on that, or does it handle things more intelligently? Thank you!