Chromium Code Reviews| Index: src/utils.h |
| =================================================================== |
| --- src/utils.h (revision 5365) |
| +++ src/utils.h (working copy) |
| @@ -951,6 +951,13 @@ |
| return BitCast<Dest>(reinterpret_cast<uintptr_t>(source)); |
| } |
| + |
| +#ifdef __GNUC__ |
|
Vyacheslav Egorov (Chromium)
2010/08/30 16:31:25
1) GCC reference manual mentions this attribute st
|
| +#define NOIGNORE __attribute__ ((warn_unused_result)) |
| +#else |
| +#define NOIGNORE |
| +#endif |
| + |
| } } // namespace v8::internal |
| #endif // V8_UTILS_H_ |