Default the copy and move operators because the virtual dtor is explicit
| 35 | virtual ~ScheduleCompact() override = default; |
| 36 | // Default the copy and move operators because the virtual dtor is explicit |
| 37 | ScheduleCompact(const ScheduleCompact& other) = default; |
| 38 | ScheduleCompact(ScheduleCompact&& other) = default; |
| 39 | ScheduleCompact& operator=(const ScheduleCompact&) = default; |
| 40 | ScheduleCompact& operator=(ScheduleCompact&&) = default; |