Removed the limitation about class templates when checking v-table entries.

Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
This commit is contained in:
Dimitar Dobrev 2017-03-06 18:02:41 +02:00
Родитель a1cd57667b
Коммит bc078d8a15
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -75,9 +75,7 @@ namespace CppSharp.AST
return entry.Method != null &&
(entry.Method.IsOperator ||
(!entry.Method.IsDeclared &&
((Class) entry.Method.Namespace).GetPropertyByConstituentMethod(entry.Method) == null) ||
// virtuals defined in templates are not yet supported
entry.Method.Namespace is ClassTemplateSpecialization);
((Class) entry.Method.Namespace).GetPropertyByConstituentMethod(entry.Method) == null));
}
}
}