From 41e686f6a405962e747544f131fbf33c7462def9 Mon Sep 17 00:00:00 2001 From: "Jeongseok (JS) Lee" Date: Tue, 27 Aug 2024 13:41:26 -0700 Subject: [PATCH] Fix missing parentheses in config.hpp to fix #1837 Signed-off-by: Jeongseok (JS) Lee --- dart/config.hpp.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dart/config.hpp.in b/dart/config.hpp.in index c288339c28c02..fc0e84852417b 100644 --- a/dart/config.hpp.in +++ b/dart/config.hpp.in @@ -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) \