Skip to content

Commit

Permalink
Add missing function call parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysgoldstein committed May 15, 2024
1 parent 4ec8593 commit 32b06fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/central64/grid/Offset2D.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ inline std::string ToString(const std::vector<Offset2D>& pathVertices,
if (i > 0) {
pathString += vertexDelimiter;
}
pathString += ToString(pathVertices[i]);
pathString += ToString(pathVertices[i], leftBracket, rightBracket, coordDelimiter);
}
return pathString;
}
Expand Down

0 comments on commit 32b06fd

Please sign in to comment.