From 88d6d462cc669c64d94fa71663964b88ad3824ba Mon Sep 17 00:00:00 2001 From: Evgenii Zhemchugov Date: Mon, 3 Mar 2025 11:39:26 +0000 Subject: [PATCH] Tool: remove static constants setting logging verbosity Delete v_error, v_warning, v_message, v_debug: use global variables declared in ToolFramework namespace in Logging.h instead. Client code shouldn't be affected. --- src/Tool/Tool.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/Tool/Tool.h b/src/Tool/Tool.h index b0a2cd5..08ec559 100644 --- a/src/Tool/Tool.h +++ b/src/Tool/Tool.h @@ -61,14 +61,6 @@ namespace ToolFramework{ private: - static const int v_error=0; - static const int v_warning=1; - static const int v_message=2; - static const int v_debug=3; - - - - }; }