aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir_def
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-04-06 16:21:47 +0100
committerGitHub <[email protected]>2020-04-06 16:21:47 +0100
commit109bb1a7935e31d4ee3c036775a89ad0ac0e012b (patch)
tree28160f40d1cf3127304456ec3d2a171fc7948c61 /crates/ra_hir_def
parentf6d688d13070a54b288486900a30680d013c66ca (diff)
parent1b2d255be168333c136677599d2ea8b5a3f5996b (diff)
Merge pull request #3867 from matklad/deny-eprintln
Check for eprintlns on CI
Diffstat (limited to 'crates/ra_hir_def')
-rw-r--r--crates/ra_hir_def/src/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/crates/ra_hir_def/src/lib.rs b/crates/ra_hir_def/src/lib.rs
index bd32ac20a..2d27bbdf8 100644
--- a/crates/ra_hir_def/src/lib.rs
+++ b/crates/ra_hir_def/src/lib.rs
@@ -7,6 +7,11 @@
7//! Note that `hir_def` is a work in progress, so not all of the above is 7//! Note that `hir_def` is a work in progress, so not all of the above is
8//! actually true. 8//! actually true.
9 9
10#[allow(unused)]
11macro_rules! eprintln {
12 ($($tt:tt)*) => { stdx::eprintln!($($tt)*) };
13}
14
10pub mod db; 15pub mod db;
11 16
12pub mod attr; 17pub mod attr;