| 31 | { |
| 32 | public: |
| 33 | TypeInfo(std::type_index&& idx) : index_(idx), base_(nullptr) {} |
| 34 | TypeInfo(const TypeInfo& rhs) : index_(rhs.index_), base_(rhs.base_) {} |
| 35 | |
| 36 | inline void set_base(TypeInfo* base) { |
nothing calls this directly
no outgoing calls
no test coverage detected