Don't resolve attributes to non attribute macros

This commit is contained in:
Lukas Wirth 2021-10-21 12:21:34 +02:00
parent 96fbef606a
commit ea2a2c52fc
7 changed files with 38 additions and 8 deletions

View file

@ -18,7 +18,7 @@ use crate::{
};
/// A value to use, when uncertain which limit to pick.
pub const DEFAULT_QUERY_SEARCH_LIMIT: Limit = Limit::new(40);
pub static DEFAULT_QUERY_SEARCH_LIMIT: Limit = Limit::new(40);
/// Three possible ways to search for the name in associated and/or other items.
#[derive(Debug, Clone, Copy)]