Skip to content

Commit c927d2e

Browse files
committed
Fix building against base 3.15.x
There was a bug that enabled INT64 support on 3.15 instead of 3.16+. Fixed #13
1 parent fc40ef1 commit c927d2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pycalcRecord.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
# if EPICS_VERSION_INT < VERSION_INT(3,16,0,2)
3838
# define dbLinkIsConstant(lnk) ((lnk)->type == CONSTANT)
3939
# define RECSUPFUN_CAST (RECSUPFUN)
40-
# define HAVE_EPICS_INT64
4140
# else
4241
# define RECSUPFUN_CAST
42+
# define HAVE_EPICS_INT64
4343
# endif
4444
#else
4545
# define dbLinkIsConstant(lnk) ((lnk)->type == CONSTANT)

0 commit comments

Comments
 (0)