| Index: tests/RecordTest.cpp
|
| diff --git a/tests/RecordTest.cpp b/tests/RecordTest.cpp
|
| index cf8c6028bc918bdb4c91d8437af5cbeab6f56385..9e02c882dbc5e74e2d994bf1c01e2560cd986501 100644
|
| --- a/tests/RecordTest.cpp
|
| +++ b/tests/RecordTest.cpp
|
| @@ -51,7 +51,7 @@ struct Stretch {
|
| }
|
| };
|
|
|
| -#define APPEND(record, type, ...) new (record.append<type>()) type(__VA_ARGS__)
|
| +#define APPEND(record, type, ...) new (record.append<type>()) type{__VA_ARGS__}
|
|
|
| // Basic tests for the low-level SkRecord code.
|
| DEF_TEST(Record, r) {
|
|
|