Code restyling.

This commit is contained in:
2020-02-29 18:03:33 +00:00
parent ad4bfdc0b5
commit 0bc3b5c1fe
7 changed files with 37 additions and 36 deletions

View File

@@ -53,7 +53,7 @@ namespace Aaru
{
x = ((x << 8) & 0xFF00FF00) | ((x >> 8) & 0xFF00FF);
return(x << 16) | (x >> 16);
return (x << 16) | (x >> 16);
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]
@@ -61,7 +61,7 @@ namespace Aaru
{
x = (int)(((x << 8) & 0xFF00FF00) | (((uint)x >> 8) & 0xFF00FF));
return(int)(((uint)x << 16) | (((uint)x >> 16) & 0xFFFF));
return (int)(((uint)x << 16) | (((uint)x >> 16) & 0xFFFF));
}
[MethodImpl(MethodImplOptions.AggressiveInlining)]