1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Merge pull request #11114 from DeterminateSystems/fix-warning

Pos::getSnippetUpTo(): Fix warning
This commit is contained in:
Eelco Dolstra 2024-07-16 17:24:43 +02:00 committed by GitHub
commit 9300f855fc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -119,12 +119,12 @@ std::optional<std::string> Pos::getSnippetUpTo(const Pos & end) const {
if (auto source = getSource()) {
auto firstLine = LinesIterator(*source);
for (auto i = 1; i < this->line; ++i) {
for (uint32_t i = 1; i < this->line; ++i) {
++firstLine;
}
auto lastLine = LinesIterator(*source);
for (auto i = 1; i < end.line; ++i) {
for (uint32_t i = 1; i < end.line; ++i) {
++lastLine;
}