Apply suggestions from code review

This commit is contained in:
David Leal 2021-07-06 15:15:15 -05:00 committed by GitHub
parent b2fe2ef9ad
commit dc5b0c6ca0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -341,7 +341,7 @@ int main(int argc, char *argv[]) {
std::vector<uint64_t> mainlistData = {
2, 5, 6, 7, 8}; ///< Main list in which sublist is to be searched
std::vector<uint64_t> sublistData = {6, 8};
std::vector<uint64_t> sublistData = {6, 8}; ///< Sublist to be searched
search::sublist_search::Node *mainlistLL =
search::sublist_search::makeLinkedList(mainlistData);