mirror of
https://hub.njuu.cf/TheAlgorithms/C-Plus-Plus.git
synced 2023-10-11 13:05:55 +08:00
Apply suggestions from code review
This commit is contained in:
parent
7bcf129d33
commit
4af39db0ce
@ -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
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user