Enable default copy and move constructors.
| 169 | public: |
| 170 | //Enable default copy and move constructors. |
| 171 | LineData(const LineData&) = default; |
| 172 | LineData(LineData&&) = default; |
| 173 | LineData& operator=(const LineData&) = default; |
| 174 | LineData& operator=(LineData&&) = default; |
nothing calls this directly
no outgoing calls
no test coverage detected