:rotating_light: fix fallthrough warning
diff --git a/include/nlohmann/detail/input/lexer.hpp b/include/nlohmann/detail/input/lexer.hpp index 60eb352..f53ebfe 100644 --- a/include/nlohmann/detail/input/lexer.hpp +++ b/include/nlohmann/detail/input/lexer.hpp
@@ -880,13 +880,13 @@ default: { unget(); - break; + continue; } } } default: - break; + continue; } } }
diff --git a/single_include/nlohmann/json.hpp b/single_include/nlohmann/json.hpp index 9c66a84..4462da8 100644 --- a/single_include/nlohmann/json.hpp +++ b/single_include/nlohmann/json.hpp
@@ -6759,13 +6759,13 @@ default: { unget(); - break; + continue; } } } default: - break; + continue; } } }