Skip to content

Commit

Permalink
fixed clang-5 compiler bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsylve committed Jun 10, 2022
1 parent fd9fa8d commit 9c12aad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/yatlib/bitmap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class bitmap {

public:
/// Create an empty bitmap
bitmap() noexcept = default;
bitmap() noexcept {}; // clang 5 had a bug when using "= default" here

/// Create a bitmap with `n` unset bits
explicit bitmap(uint64_t n) : _storage(storage_size(n)), _count{n} {}
Expand Down

0 comments on commit 9c12aad

Please sign in to comment.