Fix comparison operator on Array and BitArray
This commit is contained in:
@@ -872,8 +872,9 @@ public:
|
||||
if (!(data[i] == otherData[i]))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
template<typename OtherT = T, typename OtherAllocationType = AllocationType>
|
||||
|
||||
@@ -343,8 +343,9 @@ public:
|
||||
if (!(Get(i) == other.Get(i)))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
return true;
|
||||
return false;
|
||||
}
|
||||
|
||||
template<typename OtherAllocationType = AllocationType>
|
||||
|
||||
Reference in New Issue
Block a user