Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Jan 16, 2024
1 parent 7cb4483 commit 7ecb3e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hictk/load/load_pixels.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ template <typename N>
clr.append_pixels(buffer.begin(), buffer.end(), validate_pixels);
buffer.clear();
}
assert(!buffer.empty());
assert(buffer.empty());
} catch (const std::exception& e) {
const auto i0 = i * buffer.capacity();
const auto i1 = i0 + buffer.size();
Expand Down

0 comments on commit 7ecb3e9

Please sign in to comment.