Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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 External-Sort/DataRecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ bool DataRecord::is_smaller_int (const DataRecord incoming_record) const
return false;
}

bool DataRecord::is_smaller_str(const DataRecord incoming_record) const
bool DataRecord::is_smaller_str (const DataRecord incoming_record) const
{
int incoming_length = 0 ; char const *incoming_iter = NULL;
int current_length = 0 ; char const *current_iter = NULL;
Expand Down
Loading