| 63 | |
| 64 | template<typename ValueType> |
| 65 | Any(const ValueType& value) : |
| 66 | mContent(std::make_unique<Holder<ValueType>>(value)) |
| 67 | { |
| 68 | } |
| 69 | |
| 70 | template<typename ValueType> |
| 71 | Any& operator=(const ValueType& rhs) |
no outgoing calls
no test coverage detected