From 588bf7deccbba4e0b7880e23a73015320c100d92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Mon, 13 Oct 2025 21:18:09 +0200 Subject: [PATCH] Allow `semicolon_in_expressions_from_macros` lint --- collector/compile-benchmarks/html5ever/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/collector/compile-benchmarks/html5ever/src/lib.rs b/collector/compile-benchmarks/html5ever/src/lib.rs index f263c79e4..11091dce5 100644 --- a/collector/compile-benchmarks/html5ever/src/lib.rs +++ b/collector/compile-benchmarks/html5ever/src/lib.rs @@ -11,6 +11,7 @@ #![crate_type="dylib"] #![allow(unused_parens)] +#![allow(semicolon_in_expressions_from_macros)] #![cfg_attr(feature = "heap_size", feature(plugin, custom_derive))] #![cfg_attr(feature = "heap_size", plugin(heapsize_plugin))]