Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(343)

Side by Side Diff: jconfigint.h

Issue 1945173004: Fix INLINE macro on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* jconfigint.h. Generated from jconfigint.h.in by configure. */ 1 /* jconfigint.h. Generated from jconfigint.h.in by configure. */
2 /* libjpeg-turbo build number */ 2 /* libjpeg-turbo build number */
3 #define BUILD "" 3 #define BUILD ""
4 4
5 /* How to obtain function inlining. */ 5 /* How to obtain function inlining. */
6 #ifndef INLINE 6 #ifndef INLINE
7 #ifndef TURBO_FOR_WINDOWS 7 #if defined(__GNUC__)
scroggo_chromium 2016/05/04 20:56:48 I tried to double check that this is the same as b
8 #define INLINE inline __attribute__((always_inline)) 8 #define INLINE inline __attribute__((always_inline))
9 #else 9 #elif defined(_MSC_VER)
10 #if defined(__GNUC__) 10 #define INLINE __forceinline
11 #define INLINE inline __attribute__((always_inline)) 11 #else
12 #elif defined(_MSC_VER) 12 #define INLINE
13 #define INLINE __forceinline 13 #endif
14 #else
15 #define INLINE
16 #endif
17 #endif
18 #endif 14 #endif
19 15
20 /* Define to the full name of this package. */ 16 /* Define to the full name of this package. */
21 #define PACKAGE_NAME "libjpeg-turbo" 17 #define PACKAGE_NAME "libjpeg-turbo"
22 18
23 /* Version number of package */ 19 /* Version number of package */
24 #define VERSION "1.4.90" 20 #define VERSION "1.4.90"
25 21
26 /* The size of `size_t', as computed by sizeof. */ 22 /* The size of `size_t', as computed by sizeof. */
27 #if __WORDSIZE==64 || defined(_WIN64) 23 #if __WORDSIZE==64 || defined(_WIN64)
28 #define SIZEOF_SIZE_T 8 24 #define SIZEOF_SIZE_T 8
29 #else 25 #else
30 #define SIZEOF_SIZE_T 4 26 #define SIZEOF_SIZE_T 4
31 #endif 27 #endif
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698