------------------------------------------------------------------------------
| 473 | |
| 474 | //------------------------------------------------------------------------------ |
| 475 | static int GetMin(const int foo[8]) |
| 476 | { |
| 477 | int result = foo[0]; |
| 478 | int i; |
| 479 | |
| 480 | for (i = 1; i < 8; i++) |
| 481 | { |
| 482 | result = std::min(foo[i], result); |
| 483 | } |
| 484 | return result; |
| 485 | } |
| 486 | |
| 487 | //------------------------------------------------------------------------------ |
| 488 | static double GetMax(const double foo[8]) |
no test coverage detected