Compare commits

..

No commits in common. "453285fd1b86018e063d1ece4656385aea9605d1" and "a53425cac41f4147eb98f7b7c860bb8a2445e589" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -198,9 +198,6 @@
tracy = final.callPackage (nixpkgs-tracy.legacyPackages.${final.hostPlatform.system}.path + "/pkgs/development/tools/tracy") {};
enableTracy = true;
officialRelease = false;
# The test suite fails. Unrelated to our changes.
doCheck = false;
doInstallCheck = false;
boehmgc = final.boehmgc-nix;
libgit2 = final.libgit2-nix;
busybox-sandbox-shell = final.busybox-sandbox-shell or final.default-busybox-sandbox-shell;

View File

@ -98,6 +98,9 @@ void Pos::print(std::ostream & out, bool showOrigin) const
}, origin);
out << ":";
}
out << line;
if (column > 0)
out << ":" << column;
}
std::ostream & operator<<(std::ostream & str, const Pos & pos)