Browse Source

slightly fixing syntax

tempestpy_adaptions
dehnert 7 years ago
parent
commit
c2c306163f
  1. 3
      src/storm/storage/BitVector.cpp

3
src/storm/storage/BitVector.cpp

@ -158,8 +158,9 @@ namespace storm {
// Only perform the assignment if the source and target are not identical.
if (this != &other) {
bitCount = other.bitCount;
if (this->buckets)
if (this->buckets) {
delete[] this->buckets;
}
this->buckets = other.buckets;
other.buckets = nullptr;
}

Loading…
Cancel
Save