test: forbid copying of DebugLogHelper

This commit is contained in:
Daniel Pfeifer 2025-09-18 16:32:59 +02:00 committed by Vasil Dimov
parent d6aa266d43
commit 2427939935
No known key found for this signature in database
GPG Key ID: 54DF06F64B55CBBF

View File

@ -27,6 +27,9 @@ public:
explicit DebugLogHelper(std::string message, MatchFn match = [](const std::string*){ return true; });
DebugLogHelper(const DebugLogHelper&) = delete;
DebugLogHelper& operator=(const DebugLogHelper&) = delete;
~DebugLogHelper();
private: