forked from lix-project/lix
Remove unnecessary quotes around file names
This commit is contained in:
parent
b72c8d2e5b
commit
8b31ffd10d
|
@ -148,7 +148,7 @@ std::ostream & operator << (std::ostream & str, const Pos & pos)
|
|||
if (!pos.line)
|
||||
str << "undefined position";
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue