Skip to content

Commit

Permalink
MIES_Include.ipf: Tighten version check
Browse files Browse the repository at this point in the history
We can't assume that the build number is strictly monotonic increasing
across major versions.
  • Loading branch information
t-b committed Jan 10, 2025
1 parent 19d7998 commit e92128b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Packages/MIES_Include.ipf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

#pragma IgorVersion=9.00

#if (NumberByKey("BUILD", IgorInfo(0)) < 56565)
#if IgorVersion() < 10 && (NumberByKey("BUILD", IgorInfo(0)) < 56565)
#define TOO_OLD_IGOR
#endif

Expand Down

0 comments on commit e92128b

Please sign in to comment.