diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-03-18 09:58:00 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-03-18 13:08:28 +0200 |
commit | 1290c289590f09288d1c1e89a18a84c81b0d87a8 (patch) | |
tree | 21dd4c8f5912459fb5d040b93427902ec4814262 /include/sal | |
parent | ef2d6401ad702da8839bf9cc7292ff2f76756cd8 (diff) |
'#if defined(SAL_W32) || defined(SAL_UNX)' matches all our platforms.
Change-Id: I6b46eea0890573166d8a49e8060716907f223a1d
Diffstat (limited to 'include/sal')
-rw-r--r-- | include/sal/types.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/sal/types.h b/include/sal/types.h index e2517ae17ca2..4be37d400256 100644 --- a/include/sal/types.h +++ b/include/sal/types.h @@ -235,9 +235,7 @@ typedef void * sal_Handle; #define SAL_MAX_SIZE SAL_MAX_UINT64 #endif -#if defined(SAL_W32) || defined(SAL_UNX) -# define SAL_MAX_ENUM 0x7fffffff -#endif +#define SAL_MAX_ENUM 0x7fffffff #if defined(_MSC_VER) || defined(__MINGW32__) # define SAL_DLLPUBLIC_EXPORT __declspec(dllexport) |