| 29 | |
| 30 | |
| 31 | inline Path64 MakeRandomPoly(int width, int height, unsigned vertCnt) |
| 32 | { |
| 33 | Path64 result; |
| 34 | result.reserve(vertCnt); |
| 35 | for (unsigned i = 0; i < vertCnt; ++i) |
| 36 | result.push_back(Point64(rand() % width, rand() % height)); |
| 37 | return result; |
| 38 | } |
| 39 | |
| 40 | void DoMemoryLeakTest() |
| 41 | { |
no test coverage detected