зеркало из https://github.com/mono/CppSharp.git
Removed the limitation about class templates when checking v-table entries.
Signed-off-by: Dimitar Dobrev <dpldobrev@protonmail.com>
This commit is contained in:
Родитель
a1cd57667b
Коммит
bc078d8a15
|
@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче