Skip to content

Commit 8d72079

Browse files
committed
Fix MSVC "not all control paths return a value" warning. NFC.
1 parent f416f6c commit 8d72079

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

clang/lib/Analysis/FlowSensitive/Value.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ raw_ostream &operator<<(raw_ostream &OS, const Value &Val) {
4747
case Value::Kind::FormulaBool:
4848
return OS << "FormulaBool(" << cast<FormulaBoolValue>(Val).formula() << ")";
4949
}
50+
llvm_unreachable("Unknown clang::dataflow::Value::Kind enum");
5051
}
5152

5253
} // namespace dataflow

0 commit comments

Comments
 (0)