mirror of
https://github.com/verilator/verilator.git
synced 2026-09-06 17:01:09 +02:00
Standardize some error messages.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user