Internals: Make VL_UNREACHABLE similar to std::unreachable()

This commit is contained in:
Wilson Snyder
2022-10-02 16:35:45 -04:00
parent c9634695a7
commit 4367e03e46
7 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ void V3GraphVertex::v3errorEnd(std::ostringstream& str) const {
void V3GraphVertex::v3errorEndFatal(std::ostringstream& str) const {
v3errorEnd(str);
assert(0); // LCOV_EXCL_LINE
VL_UNREACHABLE
VL_UNREACHABLE;
}
std::ostream& operator<<(std::ostream& os, V3GraphVertex* vertexp) {