diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-08-28 17:06:03 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-09-05 07:37:11 -0700 |
| commit | 205bc9a80ab214244d44ac4c8c8f155520d00989 (patch) | |
| tree | dce7f3d777e254a81e71c3b00dd1fe268224fd79 /src/librustc/middle | |
| parent | 98b74c580fabe1b29059462a288ffbd8d06de084 (diff) | |
| download | rust-205bc9a80ab214244d44ac4c8c8f155520d00989.tar.gz rust-205bc9a80ab214244d44ac4c8c8f155520d00989.zip | |
rustc: Migrate `CStore::native_libraries` to a query
Diffstat (limited to 'src/librustc/middle')
| -rw-r--r-- | src/librustc/middle/cstore.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/librustc/middle/cstore.rs b/src/librustc/middle/cstore.rs index 26577a94ffc..edc046a1225 100644 --- a/src/librustc/middle/cstore.rs +++ b/src/librustc/middle/cstore.rs @@ -257,7 +257,6 @@ pub trait CrateStore { fn crate_disambiguator(&self, cnum: CrateNum) -> Symbol; fn plugin_registrar_fn(&self, cnum: CrateNum) -> Option<DefId>; fn derive_registrar_fn(&self, cnum: CrateNum) -> Option<DefId>; - fn native_libraries(&self, cnum: CrateNum) -> Vec<NativeLibrary>; // resolve fn def_key(&self, def: DefId) -> DefKey; @@ -364,8 +363,6 @@ impl CrateStore for DummyCrateStore { { bug!("plugin_registrar_fn") } fn derive_registrar_fn(&self, cnum: CrateNum) -> Option<DefId> { bug!("derive_registrar_fn") } - fn native_libraries(&self, cnum: CrateNum) -> Vec<NativeLibrary> - { bug!("native_libraries") } // resolve fn def_key(&self, def: DefId) -> DefKey { bug!("def_key") } |
