<html><head></head><body>Hi,<br><br>This feels much less readable than what we currently have, TBH. And as Steve noted, it'll actually unfix the warnings on Clang.<br><br>If/when there is a proper statement in ISO specs, we should use that. But in the mean time, I'd much rather stick to the comments.<br><br><div class="gmail_quote">Le 22 mars 2019 03:10:36 GMT+08:00, chishtiawais511@gmail.com a écrit :<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<pre class="k9mail">From: Awais Chishti <chishtiawais511@gmail.com><hr> include/vlc_common.h | 13 +++++++++++++<br> 1 file changed, 13 insertions(+)<br><br>diff --git a/include/vlc_common.h b/include/vlc_common.h<br>index 033c618677..f3eb10271a 100644<br>--- a/include/vlc_common.h<br>+++ b/include/vlc_common.h<br>@@ -185,6 +185,19 @@<br> # define VLC_USED<br> #endif<br> <br>+/**<br>+ * Explicitly indicate fallthrough<br>+ *<br>+ * Use this macro as a replacement for //fallthrough comments in switch blocks.<br>+ * <br>+ * This may disable inaccurate compiler warnings of implicit fallthrough.<br>+ */<br>+#ifdef __GNUC__<br>+# define VLC_FALLTHROUGH __attribute__ ((fallthrough));<br>+#else<br>+# define VLC_FALLTHROUGH<br>+#endif<br>+<br> #if defined (__ELF__) || defined (__MACH__)<br> # define VLC_WEAK __attribute__((weak))<br> #else</pre></blockquote></div><br>-- <br>Envoyé de mon appareil Android avec Courriel K-9 Mail. Veuillez excuser ma brièveté.</body></html>