mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-25 11:47:18 +02:00
Remove unnecessary quotes around file names
This commit is contained in:
parent
b72c8d2e5b
commit
8b31ffd10d
1 changed files with 1 additions and 1 deletions
|
@ -148,7 +148,7 @@ std::ostream & operator << (std::ostream & str, const Pos & pos)
|
||||||
if (!pos.line)
|
if (!pos.line)
|
||||||
str << "undefined position";
|
str << "undefined position";
|
||||||
else
|
else
|
||||||
str << (format("`%1%:%2%:%3%'") % pos.file % pos.line % pos.column).str();
|
str << (format("%1%:%2%:%3%") % pos.file % pos.line % pos.column).str();
|
||||||
return str;
|
return str;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue