diff options
author | Aleksey Kladov <[email protected]> | 2019-01-15 12:45:48 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-15 12:45:48 +0000 |
commit | fedd320cf284ec5d489e62bf809277cedd9f60ac (patch) | |
tree | ba684c9ce0161079026b47b17d933d8c845476e2 /crates/ra_ide_api | |
parent | dd45697e5396d4a6ac8e838e1f4f510c960b9c43 (diff) |
check_canceled does not return Result
Diffstat (limited to 'crates/ra_ide_api')
-rw-r--r-- | crates/ra_ide_api/src/symbol_index.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/symbol_index.rs b/crates/ra_ide_api/src/symbol_index.rs index fdda57022..b7a3a3550 100644 --- a/crates/ra_ide_api/src/symbol_index.rs +++ b/crates/ra_ide_api/src/symbol_index.rs | |||
@@ -54,7 +54,7 @@ salsa::query_group! { | |||
54 | } | 54 | } |
55 | 55 | ||
56 | fn file_symbols(db: &impl SymbolsDatabase, file_id: FileId) -> Cancelable<Arc<SymbolIndex>> { | 56 | fn file_symbols(db: &impl SymbolsDatabase, file_id: FileId) -> Cancelable<Arc<SymbolIndex>> { |
57 | db.check_canceled()?; | 57 | db.check_canceled(); |
58 | let source_file = db.source_file(file_id); | 58 | let source_file = db.source_file(file_id); |
59 | let mut symbols = source_file | 59 | let mut symbols = source_file |
60 | .syntax() | 60 | .syntax() |