Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/profile/src/lib.rs')
| -rw-r--r-- | crates/profile/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/profile/src/lib.rs b/crates/profile/src/lib.rs index fdd724e2aa..d86aa0c414 100644 --- a/crates/profile/src/lib.rs +++ b/crates/profile/src/lib.rs @@ -2,11 +2,11 @@ #![warn(rust_2018_idioms, unused_lifetimes)] -mod stop_watch; -mod memory_usage; #[cfg(feature = "cpu_profiler")] mod google_cpu_profiler; mod hprof; +mod memory_usage; +mod stop_watch; mod tree; use std::cell::RefCell; |