Skip to content

Commit

Permalink
Fix building against base 3.15.x
Browse files Browse the repository at this point in the history
There was a bug that enabled INT64 support on 3.15 instead of 3.16+.

Fixed #13
  • Loading branch information
klemenv committed Jan 8, 2022
1 parent fc40ef1 commit c927d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pycalcRecord.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
# if EPICS_VERSION_INT < VERSION_INT(3,16,0,2)
# define dbLinkIsConstant(lnk) ((lnk)->type == CONSTANT)
# define RECSUPFUN_CAST (RECSUPFUN)
# define HAVE_EPICS_INT64
# else
# define RECSUPFUN_CAST
# define HAVE_EPICS_INT64
# endif
#else
# define dbLinkIsConstant(lnk) ((lnk)->type == CONSTANT)
Expand Down

0 comments on commit c927d2e

Please sign in to comment.