Kaydet (Commit) 5a849bb5 authored tarafından Caolán McNamara's avatar Caolán McNamara

should be > 4, not > 5

üst 206a2558
...@@ -450,7 +450,7 @@ template< typename T1, typename T2 > inline T1 static_int_cast(T2 n) { ...@@ -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 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))) # define SAL_DEPRECATED(message) __attribute__((deprecated(message)))
#elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1)) #elif (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 1))
# define SAL_DEPRECATED(message) __attribute__((deprecated)) # define SAL_DEPRECATED(message) __attribute__((deprecated))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment