mirror of
https://github.com/TheAlgorithms/C-Plus-Plus.git
synced 2026-02-13 15:37:06 +08:00
Apply suggestions from code review
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user