Skip to content

Commit a50efe2

Browse files
committed
Unify single-char and multi-char CStrUnit::Char handling.
The two cases are equivalent. C string literals aren't common so there is no performance need here.
1 parent 29c5158 commit a50efe2

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

compiler/rustc_ast/src/util/literal.rs

-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,6 @@ impl LitKind {
161161
error = Err(LitError::NulInCStr(span));
162162
}
163163
Ok(CStrUnit::Byte(b)) => buf.push(b),
164-
Ok(CStrUnit::Char(c)) if c.len_utf8() == 1 => buf.push(c as u8),
165164
Ok(CStrUnit::Char(c)) => {
166165
buf.extend_from_slice(c.encode_utf8(&mut [0; 4]).as_bytes())
167166
}

0 commit comments

Comments
 (0)