| 141 | //------------------------------------------------------------------------------ |
| 142 | |
| 143 | inline cInt Abs(cInt val) |
| 144 | { |
| 145 | return val < 0 ? -val : val; |
| 146 | } |
| 147 | |
| 148 | //------------------------------------------------------------------------------ |
| 149 | // PolyTree methods ... |
no outgoing calls
no test coverage detected