-
-
Notifications
You must be signed in to change notification settings - Fork 56.5k
Closed
Description
System information (version)
- OpenCV => master 0bc30d3
- Operating System / Platform => Windows 64 Bit
- Compiler => Visual Studio 2013
Detailed description
After #8596 (Don't blow out the stack. Use a smaller buffer and prevent buffer overruns with snprintf)
Building with above environment you will have
C3861: 'snprintf': identifier not foun in system.cpp
this is because 'snprintf' isn't available on VS2013 see ticket 809403. A possible workaround is to use #define snprintf _snprintf even if msdn says
in Visual Studio 2015 and Windows 10, snprintf is no longer identical to _snprintf.
please rollback a solution
Reactions are currently unavailable