resource: implicit noexcept-ness for dtors
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -78,7 +78,7 @@ public:
|
||||
: value{std::move(other.value)} {}
|
||||
|
||||
/*! @brief Default destructor. */
|
||||
~resource() noexcept = default;
|
||||
~resource() = default;
|
||||
|
||||
/**
|
||||
* @brief Default copy assignment operator.
|
||||
|
||||
Reference in New Issue
Block a user