Fix IDE0028, IDE0300, IDE0301, IDE0302, IDE0303, IDE0304.
Silence IDE0305.
This commit is contained in:
committed by
Pavel Penev
parent
0740991c12
commit
79454d8fd2
@@ -22,8 +22,8 @@ namespace OpenRA.Mods.Cnc.FileFormats
|
||||
/// <summary>
|
||||
/// The CRC32 lookup table.
|
||||
/// </summary>
|
||||
static readonly uint[] LookUp = new uint[256]
|
||||
{
|
||||
static readonly uint[] LookUp =
|
||||
[
|
||||
0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA,
|
||||
0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,
|
||||
0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988,
|
||||
@@ -88,7 +88,7 @@ namespace OpenRA.Mods.Cnc.FileFormats
|
||||
0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF,
|
||||
0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94,
|
||||
0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D
|
||||
};
|
||||
];
|
||||
|
||||
/// <summary>
|
||||
/// A CRC32 implementation that can be used on spans of bytes.
|
||||
|
||||
Reference in New Issue
Block a user