1
0
mirror of https://github.com/nlohmann/json.git synced 2025-07-29 23:01:16 +03:00

🚨 fix fallthrough warning

This commit is contained in:
Niels Lohmann
2020-07-31 19:24:03 +02:00
parent 1da931730a
commit 0326e4e2a6
2 changed files with 4 additions and 4 deletions

View File

@ -880,13 +880,13 @@ class lexer : public lexer_base<BasicJsonType>
default: default:
{ {
unget(); unget();
break; continue;
} }
} }
} }
default: default:
break; continue;
} }
} }
} }

View File

@ -6759,13 +6759,13 @@ class lexer : public lexer_base<BasicJsonType>
default: default:
{ {
unget(); unget();
break; continue;
} }
} }
} }
default: default:
break; continue;
} }
} }
} }