mirror of
https://github.com/Z3Prover/z3
synced 2026-03-21 20:18:50 +00:00
Replace fall-through comments with Z3_fallthrough macro (#8219)
* Initial plan * Fix switch fall-through warnings with Z3_fallthrough attribute Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: NikolajBjorner <3085284+NikolajBjorner@users.noreply.github.com>
This commit is contained in:
parent
a574f97ebd
commit
6ec2d4bc8d
5 changed files with 4 additions and 5 deletions
|
|
@ -1884,7 +1884,7 @@ public:
|
|||
switch(m_mark[w]) {
|
||||
case DL_UNMARKED:
|
||||
m_visited.push_back(w);
|
||||
// fall through
|
||||
Z3_fallthrough;
|
||||
case DL_PROCESSED:
|
||||
m_mark[w] = DL_FOUND;
|
||||
m_heap.insert(w);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue