Fix whitespace.

This commit is contained in:
Andrius Štikonas 2016-04-26 14:46:02 +01:00
parent f787af70fc
commit 16757048c5
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ T sum(const QList<T>& list)
{
T rval = 0;
foreach(const T & val, list)
rval += val;
rval += val;
return rval;
}