diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-12-12 17:29:20 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2020-12-12 17:29:20 +0000 |
commit | 10f633283180d513138d0d969eceba96e3ce9f96 (patch) | |
tree | e53212d4569e73c7337bb205e937174f425fda5b /crates/syntax/src/ast/token_ext.rs | |
parent | 479d1f7eec22c3564867223e2093f14774092528 (diff) | |
parent | 26a1675764c9f96cc96d75d2129dd6c828b8df51 (diff) |
Merge #6846
6846: Remove some redundant allocations r=kjeremy a=kjeremy
Co-authored-by: Jeremy Kolb <[email protected]>
Diffstat (limited to 'crates/syntax/src/ast/token_ext.rs')
-rw-r--r-- | crates/syntax/src/ast/token_ext.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/syntax/src/ast/token_ext.rs b/crates/syntax/src/ast/token_ext.rs index 52b7285dd..5e9620a40 100644 --- a/crates/syntax/src/ast/token_ext.rs +++ b/crates/syntax/src/ast/token_ext.rs | |||
@@ -599,7 +599,7 @@ impl ast::IntNumber { | |||
599 | text = &text[radix.prefix_len()..]; | 599 | text = &text[radix.prefix_len()..]; |
600 | 600 | ||
601 | let buf; | 601 | let buf; |
602 | if text.contains("_") { | 602 | if text.contains('_') { |
603 | buf = text.replace('_', ""); | 603 | buf = text.replace('_', ""); |
604 | text = buf.as_str(); | 604 | text = buf.as_str(); |
605 | }; | 605 | }; |