mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
parent
5f47410afc
commit
be6a7bb529
2 changed files with 3 additions and 3 deletions
|
@ -2435,7 +2435,7 @@ private void expressionPrettyPrint(Expression e, ref OutBuffer buf, ref HdrGenSt
|
|||
void visitSymOff(SymOffExp e)
|
||||
{
|
||||
if (e.offset)
|
||||
buf.printf("(& %s%+lld)", e.var.toChars(), e.offset);
|
||||
buf.printf("(& %s + %llu)", e.var.toChars(), e.offset);
|
||||
else if (e.var.isTypeInfoDeclaration())
|
||||
buf.writestring(e.var.toChars());
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue