libCom: __attribute__((deprecated)) not in gcc 2.x

Only apply this attribute for gcc 3 and later.
This commit is contained in:
Andrew Johnson
2011-06-20 13:52:32 -05:00
parent 4448a5501a
commit 2fb7df8548

View File

@@ -95,7 +95,7 @@
/*
* Deprecation marker
*/
#ifdef __GNUC__
#if defined( __GNUC__ ) && (__GNUC__ > 2)
# define EPICS_DEPRECATED __attribute__((deprecated))
#else
# define EPICS_DEPRECATED