Fix IsBlittableCache.VALUE did not fit in the c# name rules
This commit is contained in:
parent
72afce1d29
commit
4b09ee9ab7
1 changed files with 2 additions and 2 deletions
|
|
@ -36,7 +36,7 @@ namespace Raylib_cs.Tests
|
||||||
{
|
{
|
||||||
public static bool IsBlittable<T>()
|
public static bool IsBlittable<T>()
|
||||||
{
|
{
|
||||||
return IsBlittableCache<T>.Value;
|
return IsBlittableCache<T>.VALUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static bool IsBlittable(this Type type)
|
public static bool IsBlittable(this Type type)
|
||||||
|
|
@ -64,7 +64,7 @@ namespace Raylib_cs.Tests
|
||||||
|
|
||||||
private static class IsBlittableCache<T>
|
private static class IsBlittableCache<T>
|
||||||
{
|
{
|
||||||
public static readonly bool Value = IsBlittable(typeof(T));
|
public static readonly bool VALUE = IsBlittable(typeof(T));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue