Constructor
| 8 | |
| 9 | // Constructor |
| 10 | Integer::Integer(int value) : m_value{value} |
| 11 | { |
| 12 | ++s_count; |
| 13 | std::cout << "Object created." << std::endl; |
| 14 | } |
| 15 | |
| 16 | // Copy constructor |
| 17 | Integer::Integer(const Integer& obj) : m_value{obj.m_value} |
nothing calls this directly
no outgoing calls
no test coverage detected