MyGUI / mygui

Fast, flexible and simple GUI.
http://mygui.info/
Other
713 stars 205 forks source link

Make LanguageManager::replaceTags const #269

Closed Assumeru closed 9 months ago

Assumeru commented 9 months ago

Short and simple for a change 😛

Altren commented 9 months ago

Nice, thank you.

Altren commented 9 months ago

Curious how you found that? Was it related to some issue or you just noticed suspicious non-const method?

Assumeru commented 9 months ago

I wrote something like

const auto& languageManager = ...
std::vector<MyGUI::UString> vector{ languageManager.replaceTags(...), languageManager.replaceTags(...) };

and then wondered why it didn't compile. A complete coincidence.