diff options
author | Veetaha <[email protected]> | 2020-02-09 23:57:43 +0000 |
---|---|---|
committer | Veetaha <[email protected]> | 2020-02-09 23:57:43 +0000 |
commit | 139479e8a376aecff35db2055b9ebd2311935f98 (patch) | |
tree | 1b3f1e21b0fd2f920940d22c7c8076fcf855cedc /crates/ra_hir_def | |
parent | c48c0f370a6d02c7065864c8eb761cf9e4ba2363 (diff) |
move to to_usize()
Diffstat (limited to 'crates/ra_hir_def')
-rw-r--r-- | crates/ra_hir_def/src/body/scope.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_hir_def/src/body/scope.rs b/crates/ra_hir_def/src/body/scope.rs index a63552327..5d0279945 100644 --- a/crates/ra_hir_def/src/body/scope.rs +++ b/crates/ra_hir_def/src/body/scope.rs | |||
@@ -194,7 +194,7 @@ mod tests { | |||
194 | let (off, code) = extract_offset(code); | 194 | let (off, code) = extract_offset(code); |
195 | let code = { | 195 | let code = { |
196 | let mut buf = String::new(); | 196 | let mut buf = String::new(); |
197 | let off = u32::from(off) as usize; | 197 | let off = off.to_usize(); |
198 | buf.push_str(&code[..off]); | 198 | buf.push_str(&code[..off]); |
199 | buf.push_str("marker"); | 199 | buf.push_str("marker"); |
200 | buf.push_str(&code[off..]); | 200 | buf.push_str(&code[off..]); |