From 4021e67dc110ca05c514d1fd8030699135a385c1 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sat, 15 Aug 2009 17:35:20 +0000 Subject: [PATCH] Removed "static" identifier from main wrappers class (add, if necessary, through the Helper.cs). --- Source/Bind/GL2/Generator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Bind/GL2/Generator.cs b/Source/Bind/GL2/Generator.cs index 558e9658..bf3fee89 100644 --- a/Source/Bind/GL2/Generator.cs +++ b/Source/Bind/GL2/Generator.cs @@ -642,7 +642,7 @@ namespace Bind.GL2 sw.WriteLine("#pragma warning disable 1573"); // Missing param comments sw.WriteLine(); - sw.WriteLine("static partial class {0}", Settings.OutputClass); + sw.WriteLine("partial class {0}", Settings.OutputClass); sw.WriteLine("{"); sw.Indent();