summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik de Castro Lopo <erikd@mega-nerd.com>2014-07-12 20:58:24 +1000
committerErik de Castro Lopo <erikd@mega-nerd.com>2014-07-12 21:06:51 +1000
commit6ff4d03b409de684bfa150a2ec20d29777d9ac3b (patch)
tree3b6171107fa740148d5329e52c49c645116f7828
parent6351b58776ea350ecde12235c9ef214bd8a1758f (diff)
src/common.h : Unifiy usage of COMPILER_IS_GCC.
-rw-r--r--src/common.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.h b/src/common.h
index 4d61619..5c15c26 100644
--- a/src/common.h
+++ b/src/common.h
@@ -1,5 +1,5 @@
/*
-** Copyright (C) 1999-2013 Erik de Castro Lopo <erikd@mega-nerd.com>
+** Copyright (C) 1999-2014 Erik de Castro Lopo <erikd@mega-nerd.com>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU Lesser General Public License as published by
@@ -91,7 +91,7 @@
#define NOT(x) (! (x))
-#if (COMPILER_IS_GCC == 1)
+#if COMPILER_IS_GCC
#define SF_MAX(x, y) ({ \
typeof (x) sf_max_x1 = (x) ; \
typeof (y) sf_max_y1 = (y) ; \