diff options
author | Oriol Brufau <obrufau@igalia.com> | 2023-08-14 23:00:08 +0200 |
---|---|---|
committer | Martin Robinson <mrobinson@igalia.com> | 2023-08-16 17:46:41 +0200 |
commit | a7699d9034ca7f1019dd5a568e0006e4a996c2bf (patch) | |
tree | cf07ea710a61115eaec0c96aa8942855591caee9 /components/selectors/lib.rs | |
parent | f48b95e2e3879d38314ab84999f0c17055a660d5 (diff) | |
download | servo-a7699d9034ca7f1019dd5a568e0006e4a996c2bf.tar.gz servo-a7699d9034ca7f1019dd5a568e0006e4a996c2bf.zip |
Further changes required by Servo
Diffstat (limited to 'components/selectors/lib.rs')
-rw-r--r-- | components/selectors/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/selectors/lib.rs b/components/selectors/lib.rs index 17f81c535b6..2b785a8cd65 100644 --- a/components/selectors/lib.rs +++ b/components/selectors/lib.rs @@ -5,6 +5,9 @@ // Make |cargo bench| work. #![cfg_attr(feature = "bench", feature(test))] +#[macro_use] +extern crate size_of_test; + pub mod attr; pub mod bloom; mod builder; |