parse: cookies should be maybe_unused

They aren't necessarily _doing_ anything. Just waiting to go out of
scope.
This commit is contained in:
Danny Robson 2020-10-14 12:21:49 +10:00
parent b858daedd9
commit 801ccf2ebd

View File

@ -10,6 +10,6 @@
namespace cruft::parse {
namespace enumeration {
struct cookie { void release (void) {} };
struct [[maybe_unused]] cookie { void release (void) {} };
}
}