aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/macros.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/ra_hir/src/macros.rs')
-rw-r--r--crates/ra_hir/src/macros.rs6
1 files changed, 1 insertions, 5 deletions
diff --git a/crates/ra_hir/src/macros.rs b/crates/ra_hir/src/macros.rs
index dc016a704..7e9aba3f2 100644
--- a/crates/ra_hir/src/macros.rs
+++ b/crates/ra_hir/src/macros.rs
@@ -1,8 +1,3 @@
1#[allow(unused)]
2mod tt;
3#[allow(unused)]
4mod mbe;
5
6/// Machinery for macro expansion. 1/// Machinery for macro expansion.
7/// 2///
8/// One of the more complicated things about macros is managing the source code 3/// One of the more complicated things about macros is managing the source code
@@ -19,6 +14,7 @@ use ra_syntax::{
19 SyntaxKind::*, 14 SyntaxKind::*,
20 ast::{self, NameOwner}, 15 ast::{self, NameOwner},
21}; 16};
17use ra_macros::{tt, mbe};
22 18
23use crate::{HirDatabase, MacroCallId}; 19use crate::{HirDatabase, MacroCallId};
24 20