A virtual function in a virtual base class was overridden with two or more different functions along different paths in the inheritance hierarchy. For example,
struct VB { virtual f(); }; struct A:virtual VB { virtual f(); }; //{ struct B:virtual VB virtual f(); }
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|