| 92 | private: |
| 93 | // internal node structure |
| 94 | struct node |
| 95 | { |
| 96 | node* next_; |
| 97 | T value_; |
| 98 | }; |
| 99 | |
| 100 | // consumer part |
| 101 | // accessed mainly by consumer, infrequently be producer |
nothing calls this directly
no outgoing calls
no test coverage detected