Skip to content

Commit

Permalink
Make all test methods static
Browse files Browse the repository at this point in the history
  • Loading branch information
xoofx committed Jan 17, 2019
1 parent e102169 commit 60c5972
Show file tree
Hide file tree
Showing 68 changed files with 28,645 additions and 28,645 deletions.
2 changes: 1 addition & 1 deletion src/Unity.Mathematics.CodeGen/VectorGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1884,7 +1884,7 @@ void GenerateSwizzles(int[] swizzle, StringBuilder str)
private void BeginTest(StringBuilder str, string name)
{
str.Append("\t\t[TestCompiler]\n");
str.AppendFormat("\t\tpublic void {0}()\n", name);
str.AppendFormat("\t\tpublic static void {0}()\n", name);
str.Append("\t\t{\n");
}

Expand Down
Loading

0 comments on commit 60c5972

Please sign in to comment.