diff options
author | Jonas Schievink <[email protected]> | 2021-02-16 17:50:06 +0000 |
---|---|---|
committer | Jonas Schievink <[email protected]> | 2021-02-16 17:50:06 +0000 |
commit | 50d18eb0a61ef4692935e8dc35f863190c442d93 (patch) | |
tree | e74cc20a31567d0b877327fdafb945f76a6ead1b | |
parent | c9672a0539a59b626619724092077f57c70e6ffe (diff) |
Use `cfg(target_arch)` instead of a Cargo feature
Not that WASM works right now anyways...
-rw-r--r-- | crates/ide_db/Cargo.toml | 3 | ||||
-rw-r--r-- | crates/ide_db/src/apply_change.rs | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/crates/ide_db/Cargo.toml b/crates/ide_db/Cargo.toml index d3d3dc688..d4612a75e 100644 --- a/crates/ide_db/Cargo.toml +++ b/crates/ide_db/Cargo.toml | |||
@@ -9,9 +9,6 @@ edition = "2018" | |||
9 | [lib] | 9 | [lib] |
10 | doctest = false | 10 | doctest = false |
11 | 11 | ||
12 | [features] | ||
13 | wasm = [] | ||
14 | |||
15 | [dependencies] | 12 | [dependencies] |
16 | log = "0.4.8" | 13 | log = "0.4.8" |
17 | rayon = "1.5.0" | 14 | rayon = "1.5.0" |
diff --git a/crates/ide_db/src/apply_change.rs b/crates/ide_db/src/apply_change.rs index 9d9b6de7a..23974cff8 100644 --- a/crates/ide_db/src/apply_change.rs +++ b/crates/ide_db/src/apply_change.rs | |||
@@ -67,7 +67,7 @@ impl RootDatabase { | |||
67 | } | 67 | } |
68 | 68 | ||
69 | pub fn collect_garbage(&mut self) { | 69 | pub fn collect_garbage(&mut self) { |
70 | if cfg!(feature = "wasm") { | 70 | if cfg!(target_arch = "wasm32") { |
71 | return; | 71 | return; |
72 | } | 72 | } |
73 | 73 | ||