Skip to content

Commit d974a0b

Browse files
author
Jonas Schievink
committed
Fix rebase fallout
1 parent 37443eb commit d974a0b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/hir-expand/src/builtin_fn_macro.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@ fn concat_bytes_expand(
440440
.into_iter()
441441
.for_each(|x| bytes.push(x.to_string()));
442442
}
443-
ast::LiteralKind::Byte => {
443+
ast::LiteralKind::Byte(_) => {
444444
bytes.push(lit.to_string());
445445
}
446446
_ => {
@@ -477,7 +477,7 @@ fn concat_bytes_expand_subtree(
477477
tt::TokenTree::Leaf(tt::Leaf::Literal(lit)) => {
478478
let lit = ast::make::literal(&lit.to_string());
479479
match lit.kind() {
480-
ast::LiteralKind::IntNumber(_) | ast::LiteralKind::Byte => {
480+
ast::LiteralKind::IntNumber(_) | ast::LiteralKind::Byte(_) => {
481481
bytes.push(lit.to_string());
482482
}
483483
_ => {

0 commit comments

Comments
 (0)