| 36 | |
| 37 | struct VBase { |
| 38 | VBase() = default; |
| 39 | VBase(const VBase &) = default; // silence -Wdeprecated-copy-with-dtor |
| 40 | VBase &operator=(const VBase &) = default; |
| 41 | VBase(VBase &&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected