basepi / libgit2

The Library
http://libgit2.github.com
Other
0 stars 0 forks source link

patience: find_longest_common_sequence possible improvements #29

Open trane opened 13 years ago

trane commented 13 years ago
    /*
     * Could we use fewer comparisons by making this a while loop?
     * entry = map->first
     * while (entry->next) {...
     * ?
     */
    for (entry = map->first; entry; entry = entry->next) {