aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_prof/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-04-25 20:04:04 +0100
committerAleksey Kladov <[email protected]>2020-04-25 20:22:40 +0100
commitbd9ede0ec9fb76c8cc0b572ef0405811e1cb666e (patch)
tree723ee0cd16b656a8db5c65ac65b16cc841608126 /crates/ra_prof/src/lib.rs
parent0f099ead8893fa9551e385b030a4239ea1338451 (diff)
Extract messy tree handling out of profiling code
Diffstat (limited to 'crates/ra_prof/src/lib.rs')
-rw-r--r--crates/ra_prof/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_prof/src/lib.rs b/crates/ra_prof/src/lib.rs
index e6d672ef5..89df7f04b 100644
--- a/crates/ra_prof/src/lib.rs
+++ b/crates/ra_prof/src/lib.rs
@@ -4,6 +4,7 @@ mod memory_usage;
4#[cfg(feature = "cpu_profiler")] 4#[cfg(feature = "cpu_profiler")]
5mod google_cpu_profiler; 5mod google_cpu_profiler;
6mod hprof; 6mod hprof;
7mod tree;
7 8
8use std::cell::RefCell; 9use std::cell::RefCell;
9 10