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

Unified Diff: jconfig.h

Issue 8720003: Update libjpeg-turbo to r722. (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/libjpeg_turbo/
Patch Set: '' Created 9 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « jcmainct.c ('k') | jdcolext.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jconfig.h
===================================================================
--- jconfig.h (revision 106486)
+++ jconfig.h (working copy)
@@ -40,6 +40,17 @@
/* Define if you want use complete types */
/* #undef INCOMPLETE_TYPES_BROKEN */
+/* How to obtain function inlining. */
+#ifndef INLINE
+#if defined(__GNUC__)
+#define INLINE __attribute__((always_inline))
+#elif defined(_MSC_VER)
+#define INLINE __forceinline
+#else
+#define INLINE
+#endif
+#endif
+
/* Define if you have BSD-like bzero and bcopy */
/* #undef NEED_BSD_STRINGS */
« no previous file with comments | « jcmainct.c ('k') | jdcolext.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698