VS2015 GdiplusTypes.h(475): error C3861: 'min': identifier not found
作者:互联网
查了好多资料 都不管用 包括 定义宏 #define NOMINMAX
最直接的办法,就是在项目引用 #include <GdiPlus.h> 之前 定义
namespace Gdiplus
{
using std::min;
using std::max;
};
问题解决
stack flow : https://stackoverflow.com/questions/15900381/nominmax-with-visual-studio-2012-mfc-project
标签:std,mfc,定义,min,C3861,stackoverflow,using,identifier 来源: https://www.cnblogs.com/132818Creator/p/14596510.html