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

Side by Side Diff: config.h

Issue 218733003: Fix warning about always_inline attribute in libjpeg_turbo. (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Update README.chromium (take 2) Created 6 years, 8 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 | « README.chromium ('k') | 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 /* config.h. Generated from config.h.in by configure. */ 1 /* config.h. Generated from config.h.in by configure. */
2 /* config.h.in. Generated from configure.ac by autoheader. */ 2 /* config.h.in. Generated from configure.ac by autoheader. */
3 3
4 /* Build number */ 4 /* Build number */
5 #define BUILD "20120511" 5 #define BUILD "20120511"
6 6
7 /* Support arithmetic encoding */ 7 /* Support arithmetic encoding */
8 /* #undef C_ARITH_CODING_SUPPORTED */ 8 /* #undef C_ARITH_CODING_SUPPORTED */
9 9
10 /* Support arithmetic decoding */ 10 /* Support arithmetic decoding */
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 62
63 /* Define to 1 if the system has the type `unsigned short'. */ 63 /* Define to 1 if the system has the type `unsigned short'. */
64 #define HAVE_UNSIGNED_SHORT 1 64 #define HAVE_UNSIGNED_SHORT 1
65 65
66 /* Compiler does not support pointers to undefined structures. */ 66 /* Compiler does not support pointers to undefined structures. */
67 /* #undef INCOMPLETE_TYPES_BROKEN */ 67 /* #undef INCOMPLETE_TYPES_BROKEN */
68 68
69 /* How to obtain function inlining. */ 69 /* How to obtain function inlining. */
70 #ifndef INLINE 70 #ifndef INLINE
71 #if defined(__GNUC__) 71 #if defined(__GNUC__)
72 #define INLINE __attribute__((always_inline)) 72 #define INLINE inline __attribute__((always_inline))
73 #elif defined(_MSC_VER) 73 #elif defined(_MSC_VER)
74 #define INLINE __forceinline 74 #define INLINE __forceinline
75 #else 75 #else
76 #define INLINE 76 #define INLINE
77 #endif 77 #endif
78 #endif 78 #endif
79 79
80 /* libjpeg API version */ 80 /* libjpeg API version */
81 #define JPEG_LIB_VERSION 62 81 #define JPEG_LIB_VERSION 62
82 82
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 /* #undef const */ 138 /* #undef const */
139 139
140 /* Define to `__inline__' or `__inline' if that's what the C compiler 140 /* Define to `__inline__' or `__inline' if that's what the C compiler
141 calls it, or to nothing if 'inline' is not supported under any name. */ 141 calls it, or to nothing if 'inline' is not supported under any name. */
142 #ifndef __cplusplus 142 #ifndef __cplusplus
143 /* #undef inline */ 143 /* #undef inline */
144 #endif 144 #endif
145 145
146 /* Define to `unsigned int' if <sys/types.h> does not define. */ 146 /* Define to `unsigned int' if <sys/types.h> does not define. */
147 /* #undef size_t */ 147 /* #undef size_t */
OLDNEW
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698