diff --git a/documentation/RELEASE_NOTES.html b/documentation/RELEASE_NOTES.html index 1904be820..c90c945ef 100644 --- a/documentation/RELEASE_NOTES.html +++ b/documentation/RELEASE_NOTES.html @@ -62,11 +62,15 @@ of base you need something like:

 #include "epicsVersion.h"
+#ifdef VERSION_INT
 #if EPICS_VERSION_INT < VERSION_INT(3,16,0,2)
 #define RECSUPFUN_CAST (RECSUPFUN)
 #else
 #define RECSUPFUN_CAST
-#endif 
+#endif
+#else
+#define RECSUPFUN_CAST (RECSUPFUN)
+#endif
 

and then replace (RECSUPFUN) with RECSUPFUN_CAST