From 8a8062db19b048514960b805b2ab0b1f75ba4a33 Mon Sep 17 00:00:00 2001 From: Danilo Piparo Date: Wed, 19 Jun 2024 10:43:07 +0200 Subject: [PATCH] Fix bug in version macro and set to 6.30/08 --- core/foundation/inc/ROOT/RVersion.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/foundation/inc/ROOT/RVersion.hxx b/core/foundation/inc/ROOT/RVersion.hxx index ac07bf8857de9..53b6f733528bf 100644 --- a/core/foundation/inc/ROOT/RVersion.hxx +++ b/core/foundation/inc/ROOT/RVersion.hxx @@ -4,7 +4,7 @@ /* Update on release: */ #define ROOT_VERSION_MAJOR 6 #define ROOT_VERSION_MINOR 30 -#define ROOT_VERSION_PATCH 9 +#define ROOT_VERSION_PATCH 8 #define ROOT_RELEASE_DATE "June 19 2024" /* Don't change the lines below. */ @@ -24,7 +24,7 @@ #define ROOT_VERSION_CODE ROOT_VERSION(ROOT_VERSION_MAJOR, ROOT_VERSION_MINOR, ROOT_VERSION_PATCH) #define R__VERS_QUOTE1_MAJOR(P) #P -#define R__VERS_QUOTE_MAJOR(P) R__VERS_QUOTE(P) +#define R__VERS_QUOTE_MAJOR(P) R__VERS_QUOTE1_MAJOR(P) #if ROOT_VERSION_MINOR < 10