test: remove noexcept(false) comment in ~DebugLogHelper

This commit is contained in:
Eugene Siegel
2025-07-18 09:27:50 -04:00
parent 2a97ff466d
commit 616bc22f13

View File

@@ -33,8 +33,6 @@ class DebugLogHelper
public: public:
explicit DebugLogHelper(std::string message, MatchFn match = [](const std::string*){ return true; }); explicit DebugLogHelper(std::string message, MatchFn match = [](const std::string*){ return true; });
//! Mark as noexcept(false) to catch any thrown exceptions.
~DebugLogHelper() noexcept(false) { check_found(); } ~DebugLogHelper() noexcept(false) { check_found(); }
}; };