I\'ve got an error trying to compile my curve compression program, error no C4996, function call with parameters may be unsafe. It\'s telling me to use the above. The error
I'd like to also add that if you want to use
#define _SCL_SECURE_NO_WARNINGS
directly in your code, you have to place it before including headers. Or you can use
#pragma warning(disable:4996)