* Ignore __attribute__ when not using gcc

This commit is contained in:
Tim Angus 2005-10-27 21:49:36 +00:00
parent 0bf8e3a8b0
commit bc9ee5644b

View file

@ -56,6 +56,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#pragma warning(disable : 4220) // varargs matches remaining parameters
#endif
//Ignore __attribute__ on non-gcc platforms
#ifndef __GNUC__
#define __attribute__(x)
#endif
/**********************************************************************
VM Considerations