aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Kasting <pkasting@chromium.org>2021-07-09 16:01:05 -0700
committerPeter Kasting <pkasting@chromium.org>2021-07-09 16:01:05 -0700
commite9e400e0af31baf72d235655850bc00e55b6c145 (patch)
tree4ead8a92d741c5d00952ed9648e7db5d1b819828
parent2eb7e20a20524dd70806268e480a695fb9cdfe46 (diff)
downloadlibjpeg-turbo-e9e400e0af31baf72d235655850bc00e55b6c145.tar.gz
Update generated config file for changes in latest sources.
Bug: 995993 Change-Id: Ifae4f37beedb90c2ab1c1e798a24dda60dd06a0c
-rw-r--r--jconfigint.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/jconfigint.h b/jconfigint.h
index 4f23dffb..cb9915c9 100644
--- a/jconfigint.h
+++ b/jconfigint.h
@@ -52,3 +52,13 @@
#define HAVEBITSCANFORWARD
#endif
#endif
+
+#if defined(__has_attribute)
+#if __has_attribute(fallthrough)
+#define FALLTHROUGH __attribute__((fallthrough));
+#else
+#define FALLTHROUGH
+#endif
+#else
+#define FALLTHROUGH
+#endif