Skip to content

Commit

Permalink
Bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Jan 23, 2024
1 parent 222de6b commit 7972e55
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,7 @@ jobs:
--output-on-failure \
--no-tests=error \
--timeout 240 \
--exclude-regex 'Cooler: dataset large read\/write.*' \
--exclude-regex 'HiC: HiCFileWriter.*' |&
--exclude-regex '.*(dataset large read\/write|HiCFileWriter).*' |&
tail -n 1000
windows-ci-status-check:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,12 +109,14 @@ class HiCInteractionToBlockMapper {
std::size_t chunk_size, int compression_lvl);

HiCInteractionToBlockMapper(const HiCInteractionToBlockMapper& other) = delete;
HiCInteractionToBlockMapper(HiCInteractionToBlockMapper&& other) noexcept = default;
HiCInteractionToBlockMapper(HiCInteractionToBlockMapper&& other) noexcept(noexcept_move_ctor()) =
default;

~HiCInteractionToBlockMapper() noexcept;

HiCInteractionToBlockMapper& operator=(const HiCInteractionToBlockMapper& other) = delete;
HiCInteractionToBlockMapper& operator=(HiCInteractionToBlockMapper&& other) noexcept = default;
HiCInteractionToBlockMapper& operator=(HiCInteractionToBlockMapper&& other) noexcept(
noexcept_move_assignment_op()) = default;

const Reference& chromosomes() const noexcept;
[[nodiscard]] std::size_t size() const noexcept;
Expand Down

0 comments on commit 7972e55

Please sign in to comment.