Merge pull request #2333 from nlohmann/fallthrough
Fix fallthrough warning
This commit is contained in:
commit
f4155e4727
2 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue