C++11: Removed compiler warning.

This commit is contained in:
Paul Beckingham 2015-05-24 01:21:40 -04:00
parent 7eac7332f0
commit 7a277f2091

View file

@ -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)
{