about summary refs log tree commit diff
path: root/compiler/rustc_query_system
diff options
context:
space:
mode:
authorCamille GILLOT <gillot.camille@gmail.com>2020-06-07 18:45:10 +0200
committerCamille GILLOT <gillot.camille@gmail.com>2020-10-22 22:35:32 +0200
commit0a4d948b4a8c69de0e3fdb231fdb14097849f6ce (patch)
tree2f41a210fc4f5b80607c2c02748ebe03e89bf98d /compiler/rustc_query_system
parent500ddc5efda9d4b0c8f90b654d220ffc9e24ecb5 (diff)
downloadrust-0a4d948b4a8c69de0e3fdb231fdb14097849f6ce.tar.gz
rust-0a4d948b4a8c69de0e3fdb231fdb14097849f6ce.zip
Remove unused ProfileCategory.
Diffstat (limited to 'compiler/rustc_query_system')
-rw-r--r--compiler/rustc_query_system/src/query/config.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_query_system/src/query/config.rs b/compiler/rustc_query_system/src/query/config.rs
index 6c9849e8708..0f0684b3547 100644
--- a/compiler/rustc_query_system/src/query/config.rs
+++ b/compiler/rustc_query_system/src/query/config.rs
@@ -5,7 +5,6 @@ use crate::dep_graph::SerializedDepNodeIndex;
 use crate::query::caches::QueryCache;
 use crate::query::plumbing::CycleError;
 use crate::query::{QueryContext, QueryState};
-use rustc_data_structures::profiling::ProfileCategory;
 
 use rustc_data_structures::fingerprint::Fingerprint;
 use std::borrow::Cow;
@@ -14,7 +13,6 @@ use std::hash::Hash;
 
 pub trait QueryConfig {
     const NAME: &'static str;
-    const CATEGORY: ProfileCategory;
 
     type Key: Eq + Hash + Clone + Debug;
     type Value;