Commit 103194e3 authored by Max Kellermann's avatar Max Kellermann

protocol/RangeArg: add missing `noexcept`

parent 481c330c
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
struct RangeArg { struct RangeArg {
unsigned start, end; unsigned start, end;
static constexpr RangeArg All() { static constexpr RangeArg All() noexcept {
return { 0, std::numeric_limits<unsigned>::max() }; return { 0, std::numeric_limits<unsigned>::max() };
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment