diff options
| author | Laurențiu Nicola <lnicola@dend.ro> | 2023-12-11 11:55:43 +0200 |
|---|---|---|
| committer | Laurențiu Nicola <lnicola@dend.ro> | 2023-12-11 11:55:43 +0200 |
| commit | 71d98c53bd63d9c79b8a8a4d99eb8e4779ae4214 (patch) | |
| tree | 328167c4ae82d88e02e6374c74a1c63bc8e240ab | |
| parent | f532576ac53ddcc666bc8d59e0b6437065e2f599 (diff) | |
| download | rust-71d98c53bd63d9c79b8a8a4d99eb8e4779ae4214.tar.gz rust-71d98c53bd63d9c79b8a8a4d99eb8e4779ae4214.zip | |
Fix typo in cfg
| -rw-r--r-- | crates/hir-expand/src/eager.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir-expand/src/eager.rs b/crates/hir-expand/src/eager.rs index ef7200f615c..1e2722e8464 100644 --- a/crates/hir-expand/src/eager.rs +++ b/crates/hir-expand/src/eager.rs @@ -73,7 +73,7 @@ pub fn expand_eager_macro_input( ) }; let err = parse_err.or(err); - if cfg!(debug) { + if cfg!(debug_assertions) { arg_map.finish(); } |
