CorentinGS / Battleship

Loop body is not enclosed in {} CXX-W1243
Anti-pattern
Minor
1 occurrence in this check
Loop body is not enclosed in {}
25
26typedef struct node_t Node;
27
28typedef struct {29    Node* first;30    Node* last;
31} LinkedList;
32