We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4637bdf commit 772b4edCopy full SHA for 772b4ed
1 file changed
src/dmangle.d
@@ -209,12 +209,13 @@ public:
209
{
210
version(useBackref)
211
212
- if (auto p = cast(void*)s in symbols)
+ Identifier id = s.getIdent();
213
+ if (auto p = cast(void*)id in symbols)
214
215
buf.printf("%d$", cast(int)*p);
216
return true;
217
}
- symbols[cast(void*)s] = symbols.length;
218
+ symbols[cast(void*)id] = symbols.length;
219
220
return false;
221
0 commit comments