| Index: mojo/public/cpp/system/handle.h
|
| diff --git a/mojo/public/cpp/system/handle.h b/mojo/public/cpp/system/handle.h
|
| index d49d83a067e9a61a058a2396246f33d1665ef72a..0104f4759560f1ed62dd107947a6b2e796b8668a 100644
|
| --- a/mojo/public/cpp/system/handle.h
|
| +++ b/mojo/public/cpp/system/handle.h
|
| @@ -9,6 +9,8 @@
|
| #include <stdint.h>
|
| #include <limits>
|
|
|
| +#include "base/compiler_specific.h"
|
| +#include "base/macros.h"
|
| #include "mojo/public/c/system/functions.h"
|
| #include "mojo/public/c/system/types.h"
|
| #include "mojo/public/cpp/system/macros.h"
|
| @@ -123,7 +125,7 @@ class ScopedHandleBase {
|
| if (!handle_.is_valid())
|
| return;
|
| MojoResult result = MojoClose(handle_.value());
|
| - MOJO_ALLOW_UNUSED_LOCAL(result);
|
| + ALLOW_UNUSED_LOCAL(result);
|
| assert(result == MOJO_RESULT_OK);
|
| }
|
|
|
|
|