Consistent quotes
This commit is contained in:
parent
080d607975
commit
2f8b0e557b
1 changed files with 1 additions and 1 deletions
|
@ -173,7 +173,7 @@ Paths Store::topoSortPaths(const PathSet & paths)
|
||||||
|
|
||||||
dfsVisit = [&](const Path & path, const Path * parent) {
|
dfsVisit = [&](const Path & path, const Path * parent) {
|
||||||
if (parents.find(path) != parents.end())
|
if (parents.find(path) != parents.end())
|
||||||
throw BuildError(format("cycle detected in the references of '%1%' from '%2%'") % path % *parent);
|
throw BuildError(format("cycle detected in the references of ‘%1%’ from ‘%2%’") % path % *parent);
|
||||||
|
|
||||||
if (visited.find(path) != visited.end()) return;
|
if (visited.find(path) != visited.end()) return;
|
||||||
visited.insert(path);
|
visited.insert(path);
|
||||||
|
|
Loading…
Reference in a new issue