| 104 | NonCopyable(const NonCopyable &) = delete; |
| 105 | NonCopyable() = delete; |
| 106 | void operator=(const NonCopyable &) = delete; |
| 107 | void operator=(NonCopyable &&) = delete; |
| 108 | std::string get_value() const { |
| 109 | if (value) { |
nothing calls this directly
no outgoing calls
no test coverage detected