Commit d686085fd99fd201d0da337b487fe38261296953
Fix compilation of third-party/dtl with GCC 14
Weirdly enough, it somehow compiled without issues for older versions of
compilers despite assignment to a non-mutable member in a const-method.
See https://github.com/cubicdaiya/dtl/issues/20.
Author: xaizek
Author date (UTC): 2024-07-07 07:35
Committer name: xaizek
Committer date (UTC): 2024-07-07 07:40
Parent(s): a1ed0f87bac11c30179727fb59c99f3b0e8eaad5
Signing key: 99DC5E4DB05F6BE2
Tree: b6ac784c10536c2e3b45d3758957a78357c74e15
File third-party/dtl/Diff.hpp changed (mode: 100644) (index 47ad163..9e0eb06) |
... |
... |
namespace dtl { |
162 |
162 |
return trivial; |
return trivial; |
163 |
163 |
} |
} |
164 |
164 |
|
|
165 |
|
void enableTrivial () const { |
|
|
165 |
|
void enableTrivial () { |
166 |
166 |
this->trivial = true; |
this->trivial = true; |
167 |
167 |
} |
} |
168 |
168 |
|
|