graph: implicit noexcept-ness for dtors

This commit is contained in:
Michele Caini
2024-09-16 17:18:09 +02:00
parent 01fa3a06a7
commit aa0e16fc93
2 changed files with 2 additions and 2 deletions

View File

@@ -161,7 +161,7 @@ public:
vert{other.vert} {}
/*! @brief Default destructor. */
~adjacency_matrix() noexcept = default;
~adjacency_matrix() = default;
/**
* @brief Default copy assignment operator.

View File

@@ -166,7 +166,7 @@ public:
sync_on{other.sync_on} {}
/*! @brief Default destructor. */
~basic_flow() noexcept = default;
~basic_flow() = default;
/**
* @brief Default copy assignment operator.