Index: base/compiler_specific.h |
diff --git a/base/compiler_specific.h b/base/compiler_specific.h |
index 30603065b7004353a7e1d350eb4c276952e7565a..702047ecf157e6598994dbce302ee03449523f83 100644 |
--- a/base/compiler_specific.h |
+++ b/base/compiler_specific.h |
@@ -74,8 +74,10 @@ |
// int x ALLOW_UNUSED = ...; |
#if defined(COMPILER_GCC) |
#define ALLOW_UNUSED __attribute__((unused)) |
+#define NOINLINE __attribute__((noinline)) |
Evan Martin
2011/05/09 22:49:44
Sorry to nitpick, but the comment above doesn't ma
|
#else |
#define ALLOW_UNUSED |
+#define NOINLINE |
#endif |
// Annotate a virtual method indicating it must be overriding a virtual |