mirror of https://github.com/google/gemma.cpp.git
Fix unhandled switch warning/error
PiperOrigin-RevId: 704828160
This commit is contained in:
parent
642fc97d51
commit
7b77909427
|
|
@ -40,6 +40,8 @@ static inline const char* ToString(Tristate t) {
|
||||||
return "true";
|
return "true";
|
||||||
case Tristate::kDefault:
|
case Tristate::kDefault:
|
||||||
return "default";
|
return "default";
|
||||||
|
default:
|
||||||
|
HWY_ABORT("Bug: unknown Tristate %d", static_cast<int>(t));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue