File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ LLConstant *IrClass::getVtblInit() {
216
216
FuncDeclaration *fd = dsym->isFuncDeclaration ();
217
217
assert (fd && " vtbl entry not a function" );
218
218
219
- if (cd-> isAbstract () || (fd->isAbstract () && !fd->fbody )) {
219
+ if (isAbstract (cd ) || (fd->isAbstract () && !fd->fbody )) {
220
220
c = getNullPtr ();
221
221
} else {
222
222
// If inferring return type and semantic3 has not been run, do it now.
@@ -321,14 +321,14 @@ unsigned buildClassinfoFlags(ClassDeclaration *cd) {
321
321
break ;
322
322
}
323
323
}
324
- if (cd-> isAbstract ()) {
324
+ if (isAbstract (cd )) {
325
325
flags |= ClassFlags::isAbstract;
326
326
}
327
327
for (ClassDeclaration *pc = cd; pc; pc = pc->baseClass ) {
328
328
if (pc->members ) {
329
329
for (Dsymbol *sm : *pc->members ) {
330
330
// printf("sm = %s %s\n", sm->kind(), sm->toChars());
331
- if (sm-> hasPointers ()) {
331
+ if (hasPointers (sm )) {
332
332
return flags;
333
333
}
334
334
}
You can’t perform that action at this time.
0 commit comments