Nelarius/imnodes

sscanf(...) is not compatible with MSVC 2019 compiler

EssenOH opened this issue · 3 comments

The compiler recommends you use sscanf_s(...)

The _s subset of functions is non standard in c++.

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.

We could add defines like ImGui.
I assume that ImGui compiles for you?