nodiscard

This commit is contained in:
akallabeth 2024-09-04 22:17:35 +02:00
parent 64a0d87c98
commit e3f94e6622

View File

@ -62,12 +62,12 @@ class DynChannelState
{ {
public: public:
bool skip() const [[nodiscard]] bool skip() const
{ {
return _toSkip != 0; return _toSkip != 0;
} }
bool skip(size_t s) [[nodiscard]] bool skip(size_t s)
{ {
if (s > _toSkip) if (s > _toSkip)
_toSkip = 0; _toSkip = 0;
@ -76,12 +76,12 @@ class DynChannelState
return skip(); return skip();
} }
size_t remaining() const [[nodiscard]] size_t remaining() const
{ {
return _toSkip; return _toSkip;
} }
size_t total() const [[nodiscard]] size_t total() const
{ {
return _totalSkipSize; return _totalSkipSize;
} }
@ -91,7 +91,7 @@ class DynChannelState
_toSkip = _totalSkipSize = len; _toSkip = _totalSkipSize = len;
} }
bool drop() const [[nodiscard]] bool drop() const
{ {
return _drop; return _drop;
} }
@ -101,7 +101,7 @@ class DynChannelState
_drop = d; _drop = d;
} }
uint32_t channelId() const [[nodiscard]] uint32_t channelId() const
{ {
return _channelId; return _channelId;
} }