protocol/RangeArg: add missing noexcept

This commit is contained in:
Max Kellermann 2021-02-15 19:43:53 +01:00
parent 481c330c17
commit 103194e32d

View File

@ -25,7 +25,7 @@
struct RangeArg {
unsigned start, end;
static constexpr RangeArg All() {
static constexpr RangeArg All() noexcept {
return { 0, std::numeric_limits<unsigned>::max() };
}