From e02e987e878f9414ecdf8d52df1cef40205c2fa9 Mon Sep 17 00:00:00 2001 From: Hariharan Devarajan Date: Wed, 29 May 2024 21:58:02 -0700 Subject: [PATCH] Update gotcha_config.h.in --- cmake/gotcha_config.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/gotcha_config.h.in b/cmake/gotcha_config.h.in index eed2e5b..14a4a4d 100644 --- a/cmake/gotcha_config.h.in +++ b/cmake/gotcha_config.h.in @@ -1,7 +1,7 @@ #ifndef GOTCHA_CONFIG_H #define GOTCHA_CONFIG_H -#define GOTCHA_GET_VERSION(MAJOR, MINOR, PATCH) MAJOR * 100000 + MINOR * 100 + PATCH +#define GOTCHA_GET_VERSION(MAJOR, MINOR, PATCH) (MAJOR * 100000 + MINOR * 100 + PATCH) #define GOTCHA_VERSION (GOTCHA_GET_VERSION @GOTCHA_VERSION@) #define GOTCHA_VERSION_MAJOR (GOTCHA_VERSION / 100000) #define GOTCHA_VERSION_MINOR ((GOTCHA_VERSION / 100) % 1000)