resource: implicit noexcept-ness for dtors

This commit is contained in:
Michele Caini
2024-09-16 17:18:52 +02:00
parent 044bfeefba
commit 33f00f400b
2 changed files with 2 additions and 2 deletions

View File

@@ -212,7 +212,7 @@ public:
: pool{std::piecewise_construct, std::forward_as_tuple(std::move(other.pool.first()), allocator), std::forward_as_tuple(std::move(other.pool.second()))} {}
/*! @brief Default destructor. */
~resource_cache() noexcept = default;
~resource_cache() = default;
/**
* @brief Default copy assignment operator.

View File

@@ -78,7 +78,7 @@ public:
: value{std::move(other.value)} {}
/*! @brief Default destructor. */
~resource() noexcept = default;
~resource() = default;
/**
* @brief Default copy assignment operator.