Apply suggestions from code review

This commit is contained in:
David Leal
2021-07-05 18:48:42 -05:00
committed by GitHub
parent 7bcf129d33
commit 4af39db0ce

View File

@@ -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
};
/**