| 3 | //Comments shown are in a way that alternative syntaxes can also work |
| 4 | |
| 5 | struct BSTNode |
| 6 | { |
| 7 | int data; |
| 8 | BSTNode* left; |
| 9 | BSTNode* right; |
| 10 | }; |
| 11 | |
| 12 | BSTNode* GetNewNode(int data) |
| 13 | { |
nothing calls this directly
no outgoing calls
no test coverage detected