Standardize some error messages.

This commit is contained in:
Wilson Snyder
2025-03-23 19:51:54 -04:00
parent 464e19caaa
commit 7521c2c644
40 changed files with 137 additions and 90 deletions
+1 -1
View File
@@ -556,7 +556,7 @@ public:
UINFO(1, "Writing " << filename << endl);
const std::unique_ptr<std::ofstream> ofp{V3File::new_ofstream(filename)};
std::ostream* const osp = &(*ofp); // &* needed to deref unique_ptr
if (osp->fail()) v3fatalStatic("Can't write " << filename);
if (osp->fail()) v3fatalStatic("Can't write file: " << filename);
// Find start vertex with longest CP
const LogicMTask* startp = nullptr;