Skip to content

Commit

Permalink
Fixes after merging the dev
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Nov 9, 2023
1 parent 55976fc commit 1b05c0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions test/CoreTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ TEST_CASE("attribute_dtype_test", "[core]")
REQUIRE(Datatype::CHAR == a.dtype);
{
// check that copy constructor works
// NOLINTNEXTLINE(performance-unnecessary-copy-initialization)
[[maybe_unused]] Attribute b = a;
}
{
Expand Down
4 changes: 2 additions & 2 deletions test/SerialIOTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -596,8 +596,8 @@ struct NonCopyableDeleter : std::function<void(T *)>
{}
NonCopyableDeleter(NonCopyableDeleter const &) = delete;
NonCopyableDeleter &operator=(NonCopyableDeleter const &) = delete;
NonCopyableDeleter(NonCopyableDeleter &&) = default;
NonCopyableDeleter &operator=(NonCopyableDeleter &&) = default;
NonCopyableDeleter(NonCopyableDeleter &&) noexcept = default;
NonCopyableDeleter &operator=(NonCopyableDeleter &&) noexcept = default;
};
} // namespace detail

Expand Down

0 comments on commit 1b05c0a

Please sign in to comment.