summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cache.h2
-rw-r--r--git-compat-util.h2
-rw-r--r--parse-options.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/cache.h b/cache.h
index 001b63f5cd..86be95e6d9 100644
--- a/cache.h
+++ b/cache.h
@@ -1183,7 +1183,7 @@ extern int check_repository_format_version(const char *var, const char *value, v
extern int git_env_bool(const char *, int);
extern int git_config_system(void);
extern int config_error_nonbool(const char *);
-#if defined(__GNUC__) && ! defined(__clang__)
+#if defined(__GNUC__)
#define config_error_nonbool(s) (config_error_nonbool(s), const_error())
#endif
extern const char *get_log_output_encoding(void);
diff --git a/git-compat-util.h b/git-compat-util.h
index 90b988a5c1..38ff803070 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -342,7 +342,7 @@ extern void warning(const char *err, ...) __attribute__((format (printf, 1, 2)))
* trying to help gcc, anyway, it's OK; other compilers will fall back to
* using the function as usual.
*/
-#if defined(__GNUC__) && ! defined(__clang__)
+#if defined(__GNUC__)
static inline int const_error(void)
{
return -1;
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