Hello,

Line 59 in FileUtils.cpp seems strange:

#ifdef __IPHONE_4_0 && (__IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_4_0)

Clang warns me about "extra tokens at end of #ifdef directive" at the &&.

Shouldn't the correct syntax be as below?

#if defined( __IPHONE_4_0) && (__IPHONE_OS_VERSION_MIN_REQUIRED >= __IPHONE_4_0)

Cheers
Eduardo
_______________________________________________
osg-users mailing list
[email protected]
http://lists.openscenegraph.org/listinfo.cgi/osg-users-openscenegraph.org

Reply via email to