Skip to content

Commit

Permalink
Bugfix [ci full]
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Dec 14, 2023
1 parent 845908b commit 4327344
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,8 @@ class SparseMatrixChunked {
SparseMatrixChunked(const SparseMatrixChunked& other) = delete;
#if defined(__GNUC__) && !defined(__clang__) && __GNUC__ < 10
SparseMatrixChunked(SparseMatrixChunked&& other) = default;
#elif defined(__GNUC__) && defined(__clang__) && __clang__ < 9
SparseMatrixChunked(SparseMatrixChunked&& other) = default;
#else
SparseMatrixChunked(SparseMatrixChunked&& other) noexcept = default;
#endif
Expand Down

0 comments on commit 4327344

Please sign in to comment.