* src/twa/acc.hh: Fix warning with newer clang++.

This commit is contained in:
Alexandre Duret-Lutz 2015-09-30 19:48:49 +02:00
parent 7c5f345d68
commit 85112b04f3

View file

@ -544,7 +544,7 @@ namespace spot
acc_cond::acc_code pair = fin({n++}); acc_cond::acc_code pair = fin({n++});
acc_cond::mark_t m = 0U; acc_cond::mark_t m = 0U;
for (unsigned ni = *i; ni > 0; --ni) for (unsigned ni = *i; ni > 0; --ni)
m.set({n++}); m.set(n++);
pair.append_and(inf(m)); pair.append_and(inf(m));
std::swap(pair, res); std::swap(pair, res);
res.append_or(std::move(pair)); res.append_or(std::move(pair));