mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-27 19:24:06 +00:00
global: Use defined() in macro checks
This commit is contained in:
parent
4c6e7e086a
commit
b99a25ca89
|
@ -32,11 +32,11 @@
|
|||
#include <stdio.h>
|
||||
#include <limits.h>
|
||||
|
||||
#if _MSC_VER && _M_AMD64
|
||||
#if defined(_MSC_VER) && defined(_M_AMD64)
|
||||
#define X86_64
|
||||
#endif
|
||||
|
||||
#if __GNUC__ && __x86_64__
|
||||
#if defined(__GNUC__) && defined(__x86_64__)
|
||||
#define X86_64
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue