test: remove noexcept(false) comment in ~DebugLogHelper

Github-Pull: #33011
Rebased-From: 616bc22f13
This commit is contained in:
Eugene Siegel
2025-07-18 09:27:50 -04:00
committed by fanquake
parent 24c793d06c
commit 25f975b8df

View File

@@ -33,8 +33,6 @@ class DebugLogHelper
public:
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(); }
};