1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00

don't print blank lines for blank description

This commit is contained in:
Ben Burdette 2020-04-24 21:40:13 -06:00
parent d8d4844b88
commit cdac083dc5

View file

@ -88,7 +88,7 @@ void printCodeLines(const string &prefix, const NixCode &nixCode)
std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo)
{
int errwidth = 80;
string prefix = " ";
string prefix = "";
string levelString;
switch (einfo.level) {
@ -176,8 +176,10 @@ std::ostream& operator<<(std::ostream &out, const ErrorInfo &einfo)
}
// description
out << prefix << einfo.description << std::endl;
out << prefix << std::endl;
if (einfo.description != "") {
out << prefix << einfo.description << std::endl;
out << prefix << std::endl;
}
// lines of code.
if (einfo.nixCode.has_value() && einfo.nixCode->errLineOfCode != "") {