File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ macro_rules! parenthesized {
148148 match $crate:: __private:: parse_parens( & $cursor) {
149149 $crate:: __private:: Ok ( parens) => {
150150 $content = parens. content;
151+ _ = $content;
151152 parens. token
152153 }
153154 $crate:: __private:: Err ( error) => {
@@ -226,6 +227,7 @@ macro_rules! braced {
226227 match $crate:: __private:: parse_braces( & $cursor) {
227228 $crate:: __private:: Ok ( braces) => {
228229 $content = braces. content;
230+ _ = $content;
229231 braces. token
230232 }
231233 $crate:: __private:: Err ( error) => {
@@ -281,6 +283,7 @@ macro_rules! bracketed {
281283 match $crate:: __private:: parse_brackets( & $cursor) {
282284 $crate:: __private:: Ok ( brackets) => {
283285 $content = brackets. content;
286+ _ = $content;
284287 brackets. token
285288 }
286289 $crate:: __private:: Err ( error) => {
You can’t perform that action at this time.
0 commit comments