Skip to content

Commit b469f15

Browse files
authored
Merge pull request rust-lang#3 from sfackler/master
Update to match rust-lang/rust#34753
2 parents 134f174 + 71a50c0 commit b469f15

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,9 @@ impl<'a> fmt::Display for Demangle<'a> {
172172
"$u20$", => " ",
173173
"$u27$", => "'",
174174
"$u5b$", => "[",
175-
"$u5d$", => "]"
175+
"$u5d$", => "]",
176+
"$u7b$", => "{",
177+
"$u7d$", => "}"
176178
}
177179
} else {
178180
let idx = rest.find('$').unwrap_or(rest.len());

0 commit comments

Comments
 (0)