| 1428 | typedef typename Registry<T_Ptr, T_Key>::const_iterator const_iterator; |
| 1429 | |
| 1430 | Registry(void) {} |
| 1431 | |
| 1432 | /// @brief Copy constructor that is useful for base classes. Try to avoid this constructor, use move constructor. |
| 1433 | Registry(const Registry& sr) : AbstractRegistry<T_Ptr, std::vector<T_Ptr*>>() { |
nothing calls this directly
no test coverage detected