Skip to content

Commit

Permalink
Fixed encoding error that prevent compilation on Linux.
Browse files Browse the repository at this point in the history
git-svn-id: https://opentk.svn.sourceforge.net/svnroot/opentk/trunk@3086 ebc5dd9b-fb1d-0410-b6f8-d24c324e9604
  • Loading branch information
the_fiddler committed Sep 26, 2011
1 parent 6ff5555 commit 73d2539
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Bind/Structures/Parameter.cs
Expand Up @@ -158,8 +158,8 @@ public bool Unchecked
bool generic;
public bool Generic
{
get { return generic; }
set { generic = value; }
get { return generic; }
set { generic = value; }
}

#endregion
Expand Down

0 comments on commit 73d2539

Please sign in to comment.