Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ Provided Structures
| DcsHoF | _Hall of Fame_ -- stores Top N elements | **READY** | **READY** | _missing_ | **1** |
| DcsLinSet | Array based, ordered set | **READY** | _in progress_ | _missing_ | _missing_ |
| DcsHashMultiMap | Multiple values with the same key| _missing_ | _missing_ | _missing_ | _missing_ |
| DcsStack | Simple, size constrained stack | **READY** | _missing_ | _missing_ | **1** |
| DcsStack | Simple, size constrained stack | **READY** | _missing_ | **READY** | **1** |

Key Features
------------
Expand Down
2 changes: 1 addition & 1 deletion src/DcsHoF.c
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ DcsIterator dcshof_next_iterator(const DcsHoF *a, const DcsIterator it) {
}

void dcshof_inc_iterator(const DcsHoF *a, DcsIterator *it) {
return dcslinear_inc_iterator(&a->base, it);
dcslinear_inc_iterator(&a->base, it);
}

ElementPtr dcshof_deref_iterator(const DcsHoF *a, const DcsIterator it) {
Expand Down
Loading