Skip to content

Commit

Permalink
Fix unhandled switch warning/error
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 704694830
  • Loading branch information
jan-wassenberg authored and copybara-github committed Dec 10, 2024
1 parent 642fc97 commit 6a6dc34
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions util/basics.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ static inline const char* ToString(Tristate t) {
return "true";
case Tristate::kDefault:
return "default";
default:
HWY_ABORT("Bug: unknown Tristate %d", static_cast<int>(t));
}
}

Expand Down

0 comments on commit 6a6dc34

Please sign in to comment.