summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/jfuzz/jfuzz.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/jfuzz/jfuzz.cc b/tools/jfuzz/jfuzz.cc
index a97a99ce4b..b8a646d8fb 100644
--- a/tools/jfuzz/jfuzz.cc
+++ b/tools/jfuzz/jfuzz.cc
@@ -562,11 +562,11 @@ class JFuzz {
case 1:
if (emitArrayVariable(tp))
return;
- // FALL-THROUGH
+ [[fallthrough]];
case 2:
if (emitLocalVariable(tp))
return;
- // FALL-THROUGH
+ [[fallthrough]];
default:
emitFieldVariable(tp);
break;