Skip to content

Commit e5cf30c

Browse files
authored
Update v0.rs
1 parent be7fb2e commit e5cf30c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • compiler/rustc_symbol_mangling/src

‎compiler/rustc_symbol_mangling/src/v0.rs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,7 @@ impl<'tcx> Printer<'tcx> for SymbolMangler<'tcx> {
831831
/// e.g. `1` becomes `"0_"`, `62` becomes `"Z_"`, etc.
832832
pub(crate)fnpush_integer_62(x:u64,output:&mutString){
833833
ifletSome(x) = x.checked_sub(1){
834-
base_n::push_str(x asu128,62, output);
834+
base_n::push_str(x asu128,base_n::ALPHANUMERIC_ONLY, output);
835835
}
836836
output.push('_');
837837
}

0 commit comments

Comments
 (0)