diff options
author | Adrian Frühwirth | 2018-04-22 00:49:39 +0200 |
---|---|---|
committer | Adrian Frühwirth | 2018-04-22 00:56:21 +0200 |
commit | a20f90cbb7bfd61ee32ccd32603766de02c03ac8 (patch) | |
tree | 584197b20b101d746b64a20e3f1073b4b8808bb7 /common | |
parent | dd425413b5c69861fffe0071e6ca74b33a78c341 (diff) | |
download | scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.tar.gz scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.tar.bz2 scummvm-rg350-a20f90cbb7bfd61ee32ccd32603766de02c03ac8.zip |
JANITORIAL: Fix formatting
Diffstat (limited to 'common')
-rw-r--r-- | common/algorithm.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/algorithm.h b/common/algorithm.h index 0d3a11b348..8384eb7089 100644 --- a/common/algorithm.h +++ b/common/algorithm.h @@ -141,7 +141,8 @@ In find_if(In first, In last, Pred p) { */ template<class In, class Op> Op for_each(In first, In last, Op f) { - while (first != last) f(*first++); + while (first != last) + f(*first++); return f; } |