Skip to content

Commit

Permalink
🐛 Unintended switch fallthrough
Browse files Browse the repository at this point in the history
  • Loading branch information
riidefi committed Aug 11, 2020
1 parent add7ee1 commit a80ed3d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions source/frontend/editor/ImporterWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,13 @@ void ImporterWindow::draw() {
// Keep asking..
if (!answered)
return;

// The consumer will construct the state
process();
break;
}
case State::ResolveDependencies: {
assert(transaction.has_value());
unsigned num = 0;
for (auto& vec : transaction->resolvedFiles)
if (vec.empty())
Expand Down

0 comments on commit a80ed3d

Please sign in to comment.