Skip to content

Commit

Permalink
Fix missing parentheses in config.hpp
Browse files Browse the repository at this point in the history
to fix #1837

Signed-off-by: Jeongseok (JS) Lee <[email protected]>
  • Loading branch information
jslee02 authored Aug 27, 2024
1 parent 2b6abb5 commit 41e686f
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 41e686f

Please sign in to comment.