We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 722546a commit dcac05fCopy full SHA for dcac05f
src/lib_json/json_reader.cpp
@@ -226,6 +226,9 @@ bool Reader::readValue() {
226
currentValue().setOffsetLimit(current_ - begin_);
227
break;
228
} // Else, fall through...
229
+#ifdef __llvm__
230
+ [[clang::fallthrough]];
231
+#endif
232
default:
233
currentValue().setOffsetStart(token.start_ - begin_);
234
currentValue().setOffsetLimit(token.end_ - begin_);
@@ -1175,6 +1178,9 @@ bool OurReader::readValue() {
1175
1178
1176
1179
1177
1180
} // else, fall through ...
1181
1182
1183
1184
1185
1186
0 commit comments