mirror of
https://github.com/nlohmann/json.git
synced 2025-07-29 23:01:16 +03:00
🚨 fix fallthrough warning
This commit is contained in:
@ -880,13 +880,13 @@ class lexer : public lexer_base<BasicJsonType>
|
|||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
unget();
|
unget();
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6759,13 +6759,13 @@ class lexer : public lexer_base<BasicJsonType>
|
|||||||
default:
|
default:
|
||||||
{
|
{
|
||||||
unget();
|
unget();
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user