diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-09-22 09:06:11 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-09-22 15:01:04 +0100 |
commit | 5a849bb5317ad73bb43b2b618b14bc0e8751fff6 (patch) | |
tree | b797114e5ace4720e8696cc28dac94857c064d7a | |
parent | 206a25585468c1ff7dd2f03affb37599ebaba4af (diff) |
should be > 4, not > 5
-rw-r--r-- | sal/inc/sal/types.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/inc/sal/types.h b/sal/inc/sal/types.h index f9725d6ecd0e..d6cf9b0eacbb 100644 --- a/sal/inc/sal/types.h +++ b/sal/inc/sal/types.h @@ -450,7 +450,7 @@ template< typename T1, typename T2 > inline T1 static_int_cast(T2 n) { note that currently a c++0x compatible gcc disables deprecation warnings */ -#if (__GNUC__ > 5 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)) +#if (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 5)) # define SAL_DEPRECATED(message) __attribute__((deprecated(message))) #elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) # define SAL_DEPRECATED(message) __attribute__((deprecated)) |