Skip to content

Commit

Permalink
Remove warnings from structured bindings in stress tests by upgrading…
Browse files Browse the repository at this point in the history
  • Loading branch information
BarrensZeppelin authored Oct 9, 2020
1 parent 49a757b commit 3e39f71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/scripts/run-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ulimit -s 524288 # For 2-sat test
for test in $tests; do
echo "$(basename $test): "
start=`date +%s.%N`
g++ -std=c++14 -O2 $test && ./a.out
g++ -std=c++17 -O2 $test && ./a.out
retCode=$?
if (($retCode != 0)); then
echo "Failed with $retCode"
Expand Down

0 comments on commit 3e39f71

Please sign in to comment.