Changed inline to __inline.
Visual C does not accept the inline keyword, only __inline. Visual C does not recognize the #warning compiler directive
This commit is contained in:
parent
0a8f2fe25b
commit
38e3825516
4 changed files with 7 additions and 5 deletions
|
@ -326,7 +326,7 @@ void *VM_ArgPtr( long intValue );
|
|||
void *VM_ExplicitArgPtr( vm_t *vm, long intValue );
|
||||
|
||||
#define VMA(x) VM_ArgPtr(args[x])
|
||||
static inline float _vmf(long x)
|
||||
static __inline float _vmf(long x)
|
||||
{
|
||||
union {
|
||||
long l;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue