mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-24 18:06:42 +02:00
Build Warning
- Eliminated a sign warning.
This commit is contained in:
parent
94dc0c1b2d
commit
6f85dac5b8
1 changed files with 2 additions and 2 deletions
|
@ -1080,9 +1080,9 @@ bool Nibbler::skipRx (const std::string& regex)
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
bool Nibbler::backN (const int quantity /*= 1*/)
|
bool Nibbler::backN (const int quantity /*= 1*/)
|
||||||
{
|
{
|
||||||
if (_cursor >= quantity)
|
if (_cursor >= (unsigned) quantity)
|
||||||
{
|
{
|
||||||
_cursor -= quantity;
|
_cursor -= (unsigned) quantity;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue