mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-08-03 04:50:05 +02:00
fixes #431 :: apply DMDFE 1.062; thanks SiegeLord
This commit is contained in:
@@ -856,8 +856,8 @@ void ClassDeclaration::toDocBuffer(OutBuffer *buf)
|
||||
buf->printf("%s $(DDOC_PSYMBOL %s)", kind(), toChars());
|
||||
}
|
||||
int any = 0;
|
||||
for (int i = 0; i < baseclasses.dim; i++)
|
||||
{ BaseClass *bc = (BaseClass *)baseclasses.data[i];
|
||||
for (int i = 0; i < baseclasses->dim; i++)
|
||||
{ BaseClass *bc = (BaseClass *)baseclasses->data[i];
|
||||
|
||||
if (bc->protection == PROTprivate)
|
||||
continue;
|
||||
|
||||
Reference in New Issue
Block a user