Unverified Commit f4155e47 authored by Niels Lohmann's avatar Niels Lohmann Committed by GitHub

Merge pull request #2333 from nlohmann/fallthrough

Fix fallthrough warning
parents 8a546172 0326e4e2
......@@ -880,13 +880,13 @@ class lexer : public lexer_base<BasicJsonType>
default:
{
unget();
break;
continue;
}
}
}
default:
break;
continue;
}
}
}
......
......@@ -6759,13 +6759,13 @@ class lexer : public lexer_base<BasicJsonType>
default:
{
unget();
break;
continue;
}
}
}
default:
break;
continue;
}
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment