Fixes MSVC warnings in 64-bit mode.
This commit is contained in:
@@ -683,7 +683,7 @@ class VectorShuffleTest : public Test {
|
||||
}
|
||||
|
||||
static bool VectorIsShuffled(const TestingVector& vector) {
|
||||
return RangeIsShuffled(vector, 0, vector.size());
|
||||
return RangeIsShuffled(vector, 0, static_cast<int>(vector.size()));
|
||||
}
|
||||
|
||||
static bool VectorIsUnshuffled(const TestingVector& vector) {
|
||||
|
||||
Reference in New Issue
Block a user