Fix build issue regarding const expressions
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
Activity
Filter activity
requested review from @peller
assigned to @usnlf_albrecht
removed review request for @peller
Please register or sign in to reply