test: remove noexcept(false) comment in ~DebugLogHelper

Github-Pull: #33011
Rebased-From: 616bc22f131132b9239ef362dca8c6bce000a539
This commit is contained in:
Eugene Siegel 2025-07-18 09:27:50 -04:00 committed by fanquake
parent 24c793d06c
commit 25f975b8df
No known key found for this signature in database
GPG Key ID: 2EEB9F5CC09526C1

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(); }
};