| 36 | class ArrayOutput { |
| 37 | public: |
| 38 | ArrayOutput(const ArrayOutput &) noexcept = delete; |
| 39 | ArrayOutput &operator=(const ArrayOutput &) noexcept = delete; |
| 40 | ArrayOutput &operator=(ArrayOutput &&) noexcept = delete; |
| 41 | ArrayOutput(ArrayOutput &&) noexcept = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected