| 170 | |
| 171 | struct SquareNoncopyable { |
| 172 | SquareNoncopyable() = default; |
| 173 | SquareNoncopyable(const SquareNoncopyable &) = delete; |
| 174 | SquareNoncopyable &operator=(const SquareNoncopyable &) = delete; |
| 175 | SquareNoncopyable(SquareNoncopyable &&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected