File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ bool Demangler::demangle(StringView Mangled) {
110
110
}
111
111
Input = Mangled;
112
112
113
- demanglePath (InType::No);
113
+ demanglePath (rust_demangle:: InType::No);
114
114
115
115
// FIXME parse optional <instantiating-crate>.
116
116
@@ -160,15 +160,15 @@ void Demangler::demanglePath(InType InType) {
160
160
print (" <" );
161
161
demangleType ();
162
162
print (" as " );
163
- demanglePath (InType::Yes);
163
+ demanglePath (rust_demangle:: InType::Yes);
164
164
print (" >" );
165
165
break ;
166
166
}
167
167
case ' Y' : {
168
168
print (" <" );
169
169
demangleType ();
170
170
print (" as " );
171
- demanglePath (InType::Yes);
171
+ demanglePath (rust_demangle:: InType::Yes);
172
172
print (" >" );
173
173
break ;
174
174
}
@@ -211,7 +211,7 @@ void Demangler::demanglePath(InType InType) {
211
211
case ' I' : {
212
212
demanglePath (InType);
213
213
// Omit "::" when in a type, where it is optional.
214
- if (InType == InType::No)
214
+ if (InType == rust_demangle:: InType::No)
215
215
print (" ::" );
216
216
print (" <" );
217
217
for (size_t I = 0 ; !Error && !consumeIf (' E' ); ++I) {
@@ -456,7 +456,7 @@ void Demangler::demangleType() {
456
456
}
457
457
default :
458
458
Position = Start;
459
- demanglePath (InType::Yes);
459
+ demanglePath (rust_demangle:: InType::Yes);
460
460
break ;
461
461
}
462
462
}
You can’t perform that action at this time.
0 commit comments