From 7924d3ff9713f1a130ed5fe234d52d7176ae4d09 Mon Sep 17 00:00:00 2001 From: Jordan Bayles Date: Mon, 1 Jul 2019 13:06:14 -0700 Subject: [PATCH] Update version.h.in header comments Currently, the comments in the version.h.in header file are incorrect. This tiny patch just updates them. --- src/lib_json/version.h.in | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/lib_json/version.h.in b/src/lib_json/version.h.in index 911a66b..4cf439c 100644 --- a/src/lib_json/version.h.in +++ b/src/lib_json/version.h.in @@ -1,5 +1,5 @@ -// DO NOT EDIT. This file (and "version") is generated by CMake. -// Run CMake configure step to update it. +// DO NOT EDIT. This file (and "version") is a template used by the build system +// (either CMake or Meson) to generate a "version.h" header file. #ifndef JSON_VERSION_H_INCLUDED #define JSON_VERSION_H_INCLUDED @@ -8,7 +8,9 @@ #define JSONCPP_VERSION_MINOR @JSONCPP_VERSION_MINOR@ #define JSONCPP_VERSION_PATCH @JSONCPP_VERSION_PATCH@ #define JSONCPP_VERSION_QUALIFIER -#define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8)) +#define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) \ + | (JSONCPP_VERSION_MINOR << 16) \ + | (JSONCPP_VERSION_PATCH << 8)) #ifdef JSONCPP_USING_SECURE_MEMORY #undef JSONCPP_USING_SECURE_MEMORY