From: =?utf-8?b?IkjDpXZhcmQgRi4gQWFzZW4i?= <havard.f.aasen@pfft.no>
Date: Sat, 7 Sep 2024 07:50:23 +0200
Subject: Fix constness

Bug-Debian: https://bugs.debian.org/1074888
Bug: https://github.com/eranif/codelite/issues/3363
---
 Plugin/dtl/Diff.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Plugin/dtl/Diff.hpp b/Plugin/dtl/Diff.hpp
index 4312028..a569a2e 100644
--- a/Plugin/dtl/Diff.hpp
+++ b/Plugin/dtl/Diff.hpp
@@ -165,7 +165,7 @@ public:
 
     bool trivialEnabled() const { return trivial; }
 
-    void enableTrivial() const { this->trivial = true; }
+    void enableTrivial() { this->trivial = true; }
 
     void disableTrivial() { this->trivial = false; }
 
