Fixed previously missing rename target checking for classes.

This commit is contained in:
Joao Matos 2017-03-07 15:36:47 +00:00
Родитель c7771cc677
Коммит 586b14ab62
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -75,7 +75,7 @@ namespace CppSharp.Passes
public bool IsRenameableDecl(Declaration decl)
{
if (decl is Class)
return true;
return Targets.HasFlag(RenameTargets.Class);
var method = decl as Method;
if (method != null)