mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 22:16:16 +02:00
Pos::getSnippetUpTo(): Fix warning
This commit is contained in:
parent
9c6678da0e
commit
3d8fa9f668
1 changed files with 2 additions and 2 deletions
|
@ -119,12 +119,12 @@ std::optional<std::string> Pos::getSnippetUpTo(const Pos & end) const {
|
||||||
if (auto source = getSource()) {
|
if (auto source = getSource()) {
|
||||||
|
|
||||||
auto firstLine = LinesIterator(*source);
|
auto firstLine = LinesIterator(*source);
|
||||||
for (auto i = 1; i < this->line; ++i) {
|
for (uint32_t i = 1; i < this->line; ++i) {
|
||||||
++firstLine;
|
++firstLine;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto lastLine = LinesIterator(*source);
|
auto lastLine = LinesIterator(*source);
|
||||||
for (auto i = 1; i < end.line; ++i) {
|
for (uint32_t i = 1; i < end.line; ++i) {
|
||||||
++lastLine;
|
++lastLine;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue