summaryrefslogtreecommitdiff
path: root/kern/macros.h
diff options
context:
space:
mode:
Diffstat (limited to 'kern/macros.h')
-rw-r--r--kern/macros.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/kern/macros.h b/kern/macros.h
index 0bd1beb1..2c06be51 100644
--- a/kern/macros.h
+++ b/kern/macros.h
@@ -99,10 +99,9 @@
#ifndef __fallthrough
#if __GNUC__ >= 7
#define __fallthrough __attribute__((fallthrough))
-#else
-/* TODO: clang 6 might add support for -Wimplicit-fallthrough */
+#else /* __GNUC__ >= 7 */
#define __fallthrough
-#endif
+#endif /* __GNUC__ >= 7 */
#endif
#endif /* _KERN_MACROS_H */