To get the code compiled in our Visual Studio (2015) MFC project, we added code to the top of the files:
In BigInt.h:
in BigInt.cpp:
This does the job
Log in to post a comment.
To get the code compiled in our Visual Studio (2015) MFC project, we added code to the top of the files:
In BigInt.h:
undef min
undef max
in BigInt.cpp:
define _SCL_SECURE_NO_WARNINGS
pragma warning(disable:4996)
This does the job