| 635 | class MultiplyDerived : public Base, public SecondBase { |
| 636 | public: |
| 637 | MultiplyDerived() : Base(), SecondBase(), name_("MultiplyDerived") { |
| 638 | instanceCount_++; |
| 639 | } |
| 640 | |
| 641 | ~MultiplyDerived() { |
| 642 | instanceCount_--; |
nothing calls this directly
no outgoing calls
no test coverage detected