]> git.ipfire.org Git - thirdparty/git.git/commit - parse-options.h
let clang use the constant-return error() macro
authorJeff King <peff@peff.net>
Tue, 6 May 2014 15:17:50 +0000 (11:17 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 6 May 2014 22:30:40 +0000 (15:30 -0700)
commitff0a80af724e81dbad6a269847523e39c2e7e479
treef2af81cd7cde8d61559dadfbaec8693b47532181
parent87fe5df3653cf20b6bf9854bea42e4016c7d4688
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>
cache.h
git-compat-util.h
parse-options.h