arximboldi / immer

Postmodern immutable and persistent data structures for C++ — value semantics at scale
https://sinusoid.es/immer
Boost Software License 1.0
2.5k stars 181 forks source link

Fixes `difference_type` being mispelled as `diference_type`. #281

Closed nicola-gigante closed 7 months ago

nicola-gigante commented 7 months ago

This fixes the type alias difference_type which was mispelled as diference_type in map, set, table, and their transients. This may potentially break some generic code, although these aliases are not used as much as in the past nowadays.

codecov-commenter commented 7 months ago

Codecov Report

All modified and coverable lines are covered by tests :white_check_mark:

Project coverage is 90.53%. Comparing base (57a8c5e) to head (f9874f6).

:exclamation: Your organization needs to install the Codecov GitHub app to enable full functionality.

Additional details and impacted files ```diff @@ Coverage Diff @@ ## master #281 +/- ## ======================================= Coverage 90.53% 90.53% ======================================= Files 120 120 Lines 12147 12147 ======================================= Hits 10997 10997 Misses 1150 1150 ```

:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.

nicola-gigante commented 7 months ago

Thanks to you for this wonderful library!