Do not check decayed types when checking for ignored decls.

This fixes support for managed array parameters which had regressed when unifying passes with CppSharp.
This commit is contained in:
Joao Matos 2017-03-02 14:35:55 +00:00
Родитель c864de1fda
Коммит e5da888da1
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -81,7 +81,7 @@ namespace MonoEmbeddinator4000
new FixMethodParametersPass(),
new GenerateObjectTypesPass(),
new GenerateArrayTypes(),
new CheckIgnoredDeclsPass()
new CheckIgnoredDeclsPass { CheckDecayedTypes = false }
};
if (Options.GeneratorKind == GeneratorKind.C ||