Fix warnings
This commit is contained in:
parent
03a6561f50
commit
bc1d1ba59f
|
@ -109,7 +109,7 @@ CandidateList BufferManager::complete_buffername(const String& prefix,
|
||||||
if (not include_dirs and buffer->flags() & Buffer::Flags::File)
|
if (not include_dirs and buffer->flags() & Buffer::Flags::File)
|
||||||
{
|
{
|
||||||
ByteCount pos = name.find_last_of('/');
|
ByteCount pos = name.find_last_of('/');
|
||||||
if (pos != String::npos)
|
if (pos != (int)String::npos)
|
||||||
match_name = name.substr(pos);
|
match_name = name.substr(pos);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -812,7 +812,7 @@ static CharCount get_column(const Buffer& buffer,
|
||||||
auto& line = buffer[coord.line];
|
auto& line = buffer[coord.line];
|
||||||
auto col = 0_char;
|
auto col = 0_char;
|
||||||
for (auto it = line.begin();
|
for (auto it = line.begin();
|
||||||
it != line.end() and ByteCount{it - line.begin()} < coord.column;
|
it != line.end() and coord.column > (int)(it - line.begin());
|
||||||
it = utf8::next(it))
|
it = utf8::next(it))
|
||||||
{
|
{
|
||||||
if (*it == '\t')
|
if (*it == '\t')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user