sscanf(...) is not compatible with MSVC 2019 compiler
EssenOH opened this issue · 3 comments
EssenOH commented
The compiler recommends you use sscanf_s(...)
Green-Sky commented
The _s
subset of functions is non standard in c++.
EssenOH commented
Ya, that's why I reported it because MSVC 2019 returns error with standard API and recommend non standard way.
it brings up that you need a consideration to keep a single file for different compilers.
otherwise, it relies on user for the modification responsibility to different compiler.
Green-Sky commented
We could add defines like ImGui.
I assume that ImGui compiles for you?