| 37 | void set(int _x) { BOOST_ASSERT(magic == 7654321); this->x = _x; } |
| 38 | int value() const { BOOST_ASSERT(magic == 7654321); return x; } |
| 39 | static int count() { return counter; } |
| 40 | private: |
| 41 | void operator=(X const&); |
| 42 | private: |
no outgoing calls
no test coverage detected