diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-05-15 11:17:42 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-05-15 11:17:42 +0100 |
commit | 982b92f966518a0e24632fafdc18d7b5ab6928b4 (patch) | |
tree | 41aa35146d8b3b2b039d79a38a157d0f2d5cab8d /crates/ra_tt/src | |
parent | 05db35dafb47db355e202c9176bd8a752b7390d7 (diff) | |
parent | 20f7068b68b99610926b375d53d3721b878ff86c (diff) |
Merge #4431
4431: Store proc-macro result in salsa db r=matklad a=edwin0cheng
Fixed #4315
Co-authored-by: Edwin Cheng <[email protected]>
Diffstat (limited to 'crates/ra_tt/src')
-rw-r--r-- | crates/ra_tt/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_tt/src/lib.rs b/crates/ra_tt/src/lib.rs index 5248e026c..342ddbe32 100644 --- a/crates/ra_tt/src/lib.rs +++ b/crates/ra_tt/src/lib.rs | |||
@@ -243,7 +243,7 @@ impl Subtree { | |||
243 | 243 | ||
244 | pub mod buffer; | 244 | pub mod buffer; |
245 | 245 | ||
246 | #[derive(Debug, PartialEq, Eq)] | 246 | #[derive(Debug, PartialEq, Eq, Clone)] |
247 | pub enum ExpansionError { | 247 | pub enum ExpansionError { |
248 | IOError(String), | 248 | IOError(String), |
249 | JsonError(String), | 249 | JsonError(String), |