Skip to content

Fix build issue regarding const expressions

Peter Albrecht requested to merge fix/constRemoval into master

The char pointers used for the text in the skill gui were originally const constexpr, but were changed to only const after feedback while merging. This breaks compilation, since constexpr does not imply const anymore after C++17 (source)

Reverting the change fixes compilation. Whether we should instead use const std::string, is another topic.

Merge request reports