Nit.
This commit is contained in:
parent
bacda14599
commit
bcb50f0ef8
1 changed files with 3 additions and 3 deletions
|
@ -1302,13 +1302,13 @@ namespace ARMeilleure.Instructions
|
|||
|
||||
throw new ArgumentException(nameof(size));
|
||||
}
|
||||
#endregion
|
||||
#endregion
|
||||
|
||||
#region "MaxMin"
|
||||
#region "MaxMin"
|
||||
public static long MaxS64(long val1, long val2) => (val1 >= val2) ? val1 : val2;
|
||||
public static ulong MaxU64(ulong val1, ulong val2) => (val1 >= val2) ? val1 : val2;
|
||||
public static long MinS64(long val1, long val2) => (val1 <= val2) ? val1 : val2;
|
||||
public static ulong MinU64(ulong val1, ulong val2) => (val1 <= val2) ? val1 : val2;
|
||||
#endregion
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue