| 115 | } |
| 116 | |
| 117 | QueueConstIterator operator + (difference_type n) const |
| 118 | { |
| 119 | return QueueConstIterator(queue_, index_ + n); |
| 120 | } |
| 121 | |
| 122 | QueueConstIterator operator - (difference_type n) const |
| 123 | { |
nothing calls this directly
no test coverage detected