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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -43,7 +43,7 @@ namespace sublist_search {
*/ */
struct Node { struct Node {
uint32_t data = 0; ///< the key/value of the 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
}; };
/** /**