mirror of
https://github.com/GothenburgBitFactory/taskshell.git
synced 2025-06-26 10:54:29 +02:00
C++11: Removed compiler warning.
This commit is contained in:
parent
7eac7332f0
commit
7a277f2091
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ int promptAdd (const std::string& context)
|
|||
std::string composeContexts (bool pretty /* = false */)
|
||||
{
|
||||
std::string combined;
|
||||
for (int i = 0; i < contexts.size (); ++i)
|
||||
for (unsigned int i = 0; i < contexts.size (); ++i)
|
||||
{
|
||||
if (pretty)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue