From a52b260f1b84871566ee9d60833778ca825acec0 Mon Sep 17 00:00:00 2001 From: nojhan Date: Wed, 7 Sep 2022 22:55:01 +0200 Subject: [PATCH] fix const correctness --- clutchlog/clutchlog.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutchlog/clutchlog.h b/clutchlog/clutchlog.h index ac3b639..4e8ff41 100644 --- a/clutchlog/clutchlog.h +++ b/clutchlog/clutchlog.h @@ -476,7 +476,7 @@ class clutchlog protected: /** Current number of call stack levels to remove from depth display. */ - const size_t _strip_calls; + size_t _strip_calls; /** Dictionary of level identifier to their string representation. */ const std::map _level_word; /** Dictionary of level string to their identifier. */