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

View File

@@ -27,6 +27,9 @@ 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; });
DebugLogHelper(const DebugLogHelper&) = delete;
DebugLogHelper& operator=(const DebugLogHelper&) = delete;
~DebugLogHelper(); ~DebugLogHelper();
private: private: