Skip to content

Commit

Permalink
Fix ubuntu builds
Browse files Browse the repository at this point in the history
  • Loading branch information
robomics committed Sep 28, 2023
1 parent a12a1d6 commit 3b694cb
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,11 @@ class SparseMatrixChunked {
int compression_lvl = 3);

SparseMatrixChunked(const SparseMatrixChunked& other) = delete;
SparseMatrixChunked(SparseMatrixChunked&& other) noexcept(noexcept_move_ctor()) = default;
#if defined(__GNUC__) && !defined(__clang__) && __GNUC__ > 9
SparseMatrixChunked(SparseMatrixChunked&& other) noexcept = default;
#else
SparseMatrixChunked(SparseMatrixChunked&& other) = default;
#endif

~SparseMatrixChunked() noexcept;

Expand Down

0 comments on commit 3b694cb

Please sign in to comment.