We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
maybe_unused
1 parent 7fbbc5d commit 4a11423Copy full SHA for 4a11423
be/src/util/simdjson_util.h
@@ -36,7 +36,7 @@ class SimdjsonParser {
36
SimdjsonParser() {
37
// The `_parser` is only used for `unescape`ing, which touches nothing of the parser's internal structure,
38
// so the capacity doesn't matter.
39
- (void)_parser.allocate(0);
+ [[maybe_unused]] auto err = _parser.allocate(0);
40
}
41
~SimdjsonParser() = default;
42
0 commit comments