forked from lix-project/lix
don't print blank lines for blank description
This commit is contained in:
parent
d8d4844b88
commit
cdac083dc5
|
@ -176,8 +176,10 @@ std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo)
|
|||
}
|
||||
|
||||
// description
|
||||
if (einfo.description != "") {
|
||||
out << prefix << einfo.description << std::endl;
|
||||
out << prefix << std::endl;
|
||||
}
|
||||
|
||||
// lines of code.
|
||||
if (einfo.nixCode.has_value() && einfo.nixCode->errLineOfCode != "") {
|
||||
|
|
Loading…
Reference in a new issue