Closed joka921 closed 2 months ago
@RobinTF Please try it out, and tell me if that solves your strange compilation issues on MacOS.
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 89.52%. Comparing base (
e1cf7d0
) to head (f097730
). Report is 6 commits behind head on master.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
That seems to do the trick, thank you.
Issues
0 New issues
0 Accepted issues
Measures
0 Security Hotspots
0.0% Coverage on New Code
0.0% Duplication on New Code
Previously
std::is_default_constructible<IdTable>
wastrue
, but trying to default-construct anIdTable
led to a hard compiler error, as the used allocator (theAllocatorWithLimit
) was not default constructible. This is now fixed by adding the proper constraints to the constructors of theIdTable
class.