| 106 | void operator=(const NonCopyable &) = delete; |
| 107 | void operator=(NonCopyable &&) = delete; |
| 108 | std::string get_value() const { |
| 109 | if (value) { |
| 110 | return std::to_string(*value); |
| 111 | } |
| 112 | return "(null)"; |
| 113 | } |
| 114 | ~NonCopyable() { print_destroyed(this); } |
| 115 | |
| 116 | private: |
nothing calls this directly
no outgoing calls
no test coverage detected