Skip to content

Commit

Permalink
Merge branch 'release-6.14'
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Sep 3, 2024
2 parents c8cd06c + 9feb578 commit 6468490
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dart/config.hpp.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
(DART_MAJOR_VERSION > x \
|| (DART_MAJOR_VERSION >= x \
&& (DART_MINOR_VERSION > y \
|| (DART_MINOR_VERSION >= y && DART_PATCH_VERSION > z)))
|| (DART_MINOR_VERSION >= y && DART_PATCH_VERSION > z))))

#define DART_VERSION_LE(x, y, z) \
(DART_MAJOR_VERSION < x \
|| (DART_MAJOR_VERSION <= x \
&& (DART_MINOR_VERSION < y \
|| (DART_MINOR_VERSION <= y && DART_PATCH_VERSION <= z)))
|| (DART_MINOR_VERSION <= y && DART_PATCH_VERSION <= z))))

// Deprecated in 6.14
#define DART_VERSION_AT_LEAST(x, y, z) \
Expand Down

0 comments on commit 6468490

Please sign in to comment.