diff --git a/search/sublist_search.cpp b/search/sublist_search.cpp index 24fbffe60..5a24e97b1 100644 --- a/search/sublist_search.cpp +++ b/search/sublist_search.cpp @@ -43,7 +43,7 @@ namespace sublist_search { */ struct Node { uint32_t data = 0; ///< the key/value of the node - Node *next{}; // Pointer to the next node + Node *next{}; ///< pointer to the next node }; /**