summaryrefslogtreecommitdiff
path: root/kern/macros.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2018-01-12 00:04:16 +0100
committerRichard Braun <rbraun@sceen.net>2018-01-12 00:08:06 +0100
commit091e283bb43fd9e7e50507d20d8f24d1e0f32895 (patch)
tree1938035f4a3d901735d4131810d7bb492ac7d303 /kern/macros.h
parent7383c3f5cc4d377e2165714c7f1e48384b15c3d9 (diff)
kern/macros: minor comment update
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 */