Clang needs explicit copy-initialization for sets.

* src/tgba/acc.cc: here.
This commit is contained in:
Etienne Renault 2015-02-27 14:50:57 +01:00
parent 734bceff8e
commit e05ec12b37

View file

@ -354,10 +354,10 @@ namespace spot
case acc_cond::acc_op::InfNeg:
case acc_cond::acc_op::FinNeg:
SPOT_UNREACHABLE();
return {};
return std::set<acc_cond::acc_code>{};
}
SPOT_UNREACHABLE();
return {};
return std::set<acc_cond::acc_code>{};
}
}