Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio doesn't allow me to use certain variable names

I'm using Visual Studio 2010 Express. When I use certain variable names, like "near, "far", "IN", "OUT", I can't compile: I get syntax errors located after the variable name used. Example:

z = 1.0/(far - near);

Error:

error C2059: syntax error : ')'

How can I disable this "feature"?

like image 728
user1161552 Avatar asked Jan 20 '12 22:01

user1161552


1 Answers

far and near were built-in compiler keywords back in the 16-bit days. They no longer exist and they no longer have any meaning, but they're still defined as macros in the Windows headers for backwards compatibility reasons.

If you don't want them, just undefine them (or don't include the Windows headers):

#undef far
#undef near
like image 52
Cody Gray Avatar answered Nov 15 '22 06:11

Cody Gray