mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +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
|
||||
#endif
|
||||
|
||||
//Ignore __attribute__ on non-gcc platforms
|
||||
#ifndef __GNUC__
|
||||
#define __attribute__(x)
|
||||
#endif
|
||||
|
||||
/**********************************************************************
|
||||
VM Considerations
|
||||
|
||||
|
|
Loading…
Reference in a new issue