| 654 | } |
| 655 | |
| 656 | void SetInexistent(float *pArray, const int Count) |
| 657 | { |
| 658 | for(int i = 0; i < Count; i++) |
| 659 | pArray[i] = std::numeric_limits<float>::max(); |
| 660 | } |
| 661 | |
| 662 | bool IsInexistent(const float *pArray, const int Count) |
| 663 | { |
no outgoing calls
no test coverage detected