| Index: ppapi/tests/test_broker.cc
|
| diff --git a/ppapi/tests/test_broker.cc b/ppapi/tests/test_broker.cc
|
| index db2fa3ffbb39e2e7d2bd6c33a2f483cf7e4f872e..54b4671f46728cc34986933f5bb46ef0bd12345e 100644
|
| --- a/ppapi/tests/test_broker.cc
|
| +++ b/ppapi/tests/test_broker.cc
|
| @@ -60,7 +60,7 @@ PlatformFile IntToPlatformFile(int32_t handle) {
|
| #if defined(OS_POSIX)
|
|
|
| #define HANDLE_EINTR(x) ({ \
|
| - typeof(x) eintr_wrapper_result; \
|
| + decltype(x) eintr_wrapper_result; \
|
| do { \
|
| eintr_wrapper_result = (x); \
|
| } while (eintr_wrapper_result == -1 && errno == EINTR); \
|
| @@ -68,7 +68,7 @@ PlatformFile IntToPlatformFile(int32_t handle) {
|
| })
|
|
|
| #define IGNORE_EINTR(x) ({ \
|
| - typeof(x) eintr_wrapper_result; \
|
| + decltype(x) eintr_wrapper_result; \
|
| do { \
|
| eintr_wrapper_result = (x); \
|
| if (eintr_wrapper_result == -1 && errno == EINTR) { \
|
|
|