Skip to content

v0.77.8

Choose a tag to compare

@github-actions github-actions released this 12 Apr 23:08
· 118 commits to main since this release
Immutable release. Only release title and notes can be modified.

Release Notes:

  • Add more const correct signatures to CCC_Flat_priority_queue interface.
    • Operations such as heapifying, sorting, updating, increasing, and decreasing do not actually modify any metadata fields of the CCC_Flat_priority_queue struct itself. They only operate by possibly swapping elements in the contiguous memory pointed to by the metadata. Therefore, const is the correct signature for those functions.