Skip to content

Commit

Permalink
compilation fix for c++ 9
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonBankevich committed May 8, 2024
1 parent b683aa8 commit dd52bbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/projects/assembly_graph/graph_alignment_storage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ namespace ag {

AlignedRead(AlignedRead &&other) noexcept = default;

AlignedRead &operator=(AlignedRead &&other) noexcept = default;
AlignedRead &operator=(AlignedRead &&other) = default;

explicit AlignedRead(std::string readId) : id(std::move(readId)), corrected(false) {}

Expand Down

0 comments on commit dd52bbd

Please sign in to comment.