🚨 fix fallthrough warning

parent 1da93173
......@@ -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