Update WARN_UNUSED_RESULT macro to match Chromium's version.

It also matches the one in webrtc/base/common.h

BUG=None
R=tommi@webrtc.org

Review URL: https://codereview.webrtc.org/1516423004

Cr-Commit-Position: refs/heads/master@{#10998}
This commit is contained in:
tfarina
2015-12-12 05:47:19 -08:00
committed by Commit bot
parent be26c07cb5
commit 66679dcc04

View File

@ -68,10 +68,11 @@
// Annotate a function indicating the caller must examine the return value.
// Use like:
// int foo() WARN_UNUSED_RESULT;
// To explicitly ignore a result, see |ignore_result()| in <base/macros.h>.
// TODO(ajm): Hack to avoid multiple definitions until the base/ of webrtc and
// libjingle are merged.
#if !defined(WARN_UNUSED_RESULT)
#if defined(__GNUC__)
#if defined(__GNUC__) || defined(__clang__)
#define WARN_UNUSED_RESULT __attribute__((warn_unused_result))
#else
#define WARN_UNUSED_RESULT