Fix compiler warnings.
This commit is contained in:
@@ -160,7 +160,7 @@ namespace Content.Benchmarks
|
|||||||
if (val == -1)
|
if (val == -1)
|
||||||
throw new EndOfStreamException();
|
throw new EndOfStreamException();
|
||||||
|
|
||||||
a |= (uint) (val << i);
|
a |= (uint) val << i;
|
||||||
}
|
}
|
||||||
|
|
||||||
return a;
|
return a;
|
||||||
@@ -176,7 +176,7 @@ namespace Content.Benchmarks
|
|||||||
if (val == -1)
|
if (val == -1)
|
||||||
throw new EndOfStreamException();
|
throw new EndOfStreamException();
|
||||||
|
|
||||||
a |= (ulong) (val << i);
|
a |= (ulong) val << i;
|
||||||
}
|
}
|
||||||
|
|
||||||
return a;
|
return a;
|
||||||
|
|||||||
Reference in New Issue
Block a user