mirror of
https://github.com/ioquake/ioq3.git
synced 2025-05-31 00:51:17 +00:00
* Ignore __attribute__ when not using gcc
This commit is contained in:
parent
0bf8e3a8b0
commit
bc9ee5644b
1 changed files with 5 additions and 0 deletions
|
@ -56,6 +56,11 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
#pragma warning(disable : 4220) // varargs matches remaining parameters
|
#pragma warning(disable : 4220) // varargs matches remaining parameters
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
//Ignore __attribute__ on non-gcc platforms
|
||||||
|
#ifndef __GNUC__
|
||||||
|
#define __attribute__(x)
|
||||||
|
#endif
|
||||||
|
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
VM Considerations
|
VM Considerations
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue