Fix compilation with MSVC

Apparently the move c'tor isn't available unless explicitly specified
leading to errors when `SegmentData` is used in `std::vector`.
This commit is contained in:
Martchus 2023-02-02 00:28:01 +01:00
parent 205b119416
commit ca6abe31a0
1 changed files with 1 additions and 0 deletions

View File

@ -822,6 +822,7 @@ struct SegmentData {
, sizeDenotationLength(0)
{
}
SegmentData(SegmentData&&) = default;
/// \brief whether CRC-32 checksum is present
bool hasCrc32;