Skip to content

Commit 2c8005d

Browse files
committed
add visit(TypeVector t)
1 parent db47c80 commit 2c8005d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

src/dmd/cppmangle.d

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -877,6 +877,20 @@ public:
877877
}
878878
}
879879

880+
override void visit(TypeDArray t)
881+
{
882+
//if (substitute(t))
883+
//return;
884+
885+
// from: template_args
886+
buf.writestring("8__dslice");
887+
buf.writeByte('I');
888+
Type t2 = t.next;
889+
assert(t2);
890+
headOfType(t2);
891+
buf.writeByte('E');
892+
}
893+
880894
override void visit(TypeSArray t)
881895
{
882896
if (t.isImmutable() || t.isShared())

0 commit comments

Comments
 (0)