1
0
Fork 0
mirror of https://github.com/Ryujinx/GtkSharp.git synced 2025-04-01 23:16:52 +00:00

generator: Remove unused variable in FieldBase class

This commit is contained in:
Bertrand Lorentz 2013-10-10 23:44:24 +02:00
parent 46068e7add
commit 741360020c

View file

@ -161,7 +161,6 @@ namespace GtkSharp.Generation {
IGeneratable gen = table [CType];
StreamWriter sw = gen_info.Writer;
string modifiers = elem.GetAttributeAsBoolean ("new_flag") ? "new " : "";
bool is_struct = table.IsStruct (CType) || table.IsBoxed (CType);
sw.WriteLine (indent + "public " + modifiers + CSType + " " + Name + " {");