]> Nishi Git Mirror - gwion.git/commitdiff
:white_check_park: Update benchmark syntax
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Mon, 7 Sep 2020 09:25:50 +0000 (11:25 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Mon, 7 Sep 2020 09:25:50 +0000 (11:25 +0200)
benchmark/for.gw

index 6ec6aaa61aec8426f8fc053e1b94e6f7df1d54ef..21d505f81b669f0f23321a9083598edcc298fb78 100644 (file)
@@ -4,7 +4,7 @@ for (int i; i < 1000000; ++i)
  list << i;
 
 int sum;
-for(auto i : list)
+foreach(i : list)
   i +=> sum;
 
 <<< sum >>>;