Merge pull request #2333 from nlohmann/fallthrough

Fix fallthrough warning
pull/2336/head
Niels Lohmann 2020-08-01 15:32:21 +02:00 committed by GitHub
commit f4155e4727
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

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

View File

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