AirGuanZ / imgui-filebrowser

File browser implementation for dear-imgui. C++17 is required.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compilation fails in Visual Studio less than 2019 due to missing include

haleyjd opened this issue · comments

Multiple errors will occur stating "error C2672: 'std::tolower': no matching overloaded function found"; this is only due to the fact that the cctype header is not included at the top of the file so only a template overload which requires a std::locale instance as a second argument is visible to the compiler.

Thanks for telling me this! Fixed in the latest version.