Skip to content

Commit 8aecaad

Browse files
committed
Fixing -Wextra-semi
1 parent f96a661 commit 8aecaad

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

include/mdcomp/bigendian_io.hh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ namespace detail {
198198
high_byte_mask = std::rotr(high_byte_mask, nbits);
199199
}
200200
return uint_t(new_value & std::numeric_limits<uint_t>::max());
201-
};
201+
}
202202

203203
static_assert(fallback_byteswap(uint8_t{0x35U}) == uint8_t{0x35U});
204204
static_assert(fallback_byteswap(uint16_t{0x1357U}) == uint16_t{0x5713U});

0 commit comments

Comments
 (0)