about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2019-10-15 13:27:29 +0200
committerGitHub <noreply@github.com>2019-10-15 13:27:29 +0200
commitbc3e97a277778b37d28dbdf45ae5589b95586971 (patch)
treece2a5b9a0ea9cba57b6a1e032436cd88b4d71bf7 /src/libsyntax/parse
parentd24c66fba39fe88ffc2a1755188a50c6781499f7 (diff)
parent57d33b155f31ca8c9d17371416d085c66ab4e61c (diff)
downloadrust-bc3e97a277778b37d28dbdf45ae5589b95586971.tar.gz
rust-bc3e97a277778b37d28dbdf45ae5589b95586971.zip
Rollup merge of #65426 - nnethercote:rm-custom-LocalInternedString-PartialEq-impls, r=petrochenkov
Remove custom `PartialEq` impls for `LocalInternedString`.

This is on-trend with the recent changes simplifying
`LocalInternedString` and reducing its use.

r? @petrochenkov
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/literal.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/literal.rs b/src/libsyntax/parse/literal.rs
index fbd409b0de4..14e1696610a 100644
--- a/src/libsyntax/parse/literal.rs
+++ b/src/libsyntax/parse/literal.rs
@@ -134,7 +134,7 @@ impl LitKind {
         let (kind, symbol, suffix) = match *self {
             LitKind::Str(symbol, ast::StrStyle::Cooked) => {
                 // Don't re-intern unless the escaped string is different.
-                let s = &symbol.as_str();
+                let s: &str = &symbol.as_str();
                 let escaped = s.escape_default().to_string();
                 let symbol = if escaped == *s { symbol } else { Symbol::intern(&escaped) };
                 (token::Str, symbol, None)