码迷,mamicode.com
首页 > 其他好文 > 详细

编译器重复定义错误:error C2371: 'SIZE' : redefinition; different basic types

时间:2016-03-31 12:34:14      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

我们常常会定义自己工程用的数据类型,可能会与Windows的基本数据类型冲突。

vs会报重复定义错误:error C2371: ‘SIZE‘ : redefinition; different basic types

 

解决方法:欺骗编译器

#define SIZE wSIZE
typedef long SIZE;
#undef SIZE
typedef int SIZE;
 
int _tmain(int argc, _TCHAR* argv[])
{
	SIZE n = 0;		//SIZE = int
	wSIZE wN = 0;	//wSIZE = long
 
	return 0;
}

编译器重复定义错误:error C2371: 'SIZE' : redefinition; different basic types

标签:

原文地址:http://www.cnblogs.com/iluzhiyong/p/5340362.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!