| Index: tests/PathOpsDCubicTest.cpp
|
| diff --git a/tests/PathOpsDCubicTest.cpp b/tests/PathOpsDCubicTest.cpp
|
| index d6994943bddc16080a64b4aa1076528f3d219862..c7c9f2ab9696f87076b5158c17e4c76ebe78a8bc 100644
|
| --- a/tests/PathOpsDCubicTest.cpp
|
| +++ b/tests/PathOpsDCubicTest.cpp
|
| @@ -20,7 +20,8 @@ DEF_TEST(PathOpsDCubic, reporter) {
|
| for (size_t index = 0; index < tests_count; ++index) {
|
| const SkDCubic& cubic = tests[index];
|
| SkASSERT(ValidCubic(cubic));
|
| - bool result = cubic.clockwise();
|
| + bool skip;
|
| + bool result = cubic.clockwise(&skip);
|
| if (!result) {
|
| SkDebugf("%s [%d] expected clockwise\n", __FUNCTION__, index);
|
| REPORTER_ASSERT(reporter, 0);
|
|
|