diff options
author | Jeff King <peff@peff.net> | 2014-05-06 17:17:50 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-05-07 00:30:40 +0200 |
commit | ff0a80af724e81dbad6a269847523e39c2e7e479 (patch) | |
tree | f2af81cd7cde8d61559dadfbaec8693b47532181 /parse-options.h | |
parent | inline constant return from error() function (diff) | |
download | git-ff0a80af724e81dbad6a269847523e39c2e7e479.tar.xz git-ff0a80af724e81dbad6a269847523e39c2e7e479.zip |
let clang use the constant-return error() macro
Commit e208f9c converted error() into a macro to make its
constant return value more apparent to calling code. Commit
5ded807 prevents us using this macro with clang, since
clang's -Wunused-value is smart enough to realize that the
constant "-1" is useless in some contexts.
However, since the last commit puts the constant behind an
inline function call, this is enough to prevent the
-Wunused-value warning on both modern gcc and clang. So we
can now re-enable the macro when compiling with clang.
Tested with clang 3.3, 3.4, and 3.5.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'parse-options.h')
-rw-r--r-- | parse-options.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-options.h b/parse-options.h index 1ef8da1f3e..0a2b2e19a5 100644 --- a/parse-options.h +++ b/parse-options.h @@ -179,7 +179,7 @@ extern NORETURN void usage_msg_opt(const char *msg, extern int optbug(const struct option *opt, const char *reason); extern int opterror(const struct option *opt, const char *reason, int flags); -#if defined(__GNUC__) && ! defined(__clang__) +#if defined(__GNUC__) #define opterror(o,r,f) (opterror((o),(r),(f)), const_error()) #endif |