shortcut used down in ReadAndSend()
| 516 | { |
| 517 | // shortcut used down in ReadAndSend() |
| 518 | void swap(int& A, int& B) noexcept |
| 519 | { |
| 520 | int temp = B; |
| 521 | B = A; |
| 522 | A = temp; |
| 523 | } |
| 524 | } |
| 525 | |
| 526 | //------------------------------------------------------------------------------ |
no outgoing calls
no test coverage detected