Skip to content

Commit 7924d3f

Browse files
committed
Update version.h.in header comments
Currently, the comments in the version.h.in header file are incorrect. This tiny patch just updates them.
1 parent 95b3092 commit 7924d3f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Diff for: src/lib_json/version.h.in

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// DO NOT EDIT. This file (and "version") is generated by CMake.
2-
// Run CMake configure step to update it.
1+
// DO NOT EDIT. This file (and "version") is a template used by the build system
2+
// (either CMake or Meson) to generate a "version.h" header file.
33
#ifndef JSON_VERSION_H_INCLUDED
44
#define JSON_VERSION_H_INCLUDED
55

@@ -8,7 +8,9 @@
88
#define JSONCPP_VERSION_MINOR @JSONCPP_VERSION_MINOR@
99
#define JSONCPP_VERSION_PATCH @JSONCPP_VERSION_PATCH@
1010
#define JSONCPP_VERSION_QUALIFIER
11-
#define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
11+
#define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) \
12+
| (JSONCPP_VERSION_MINOR << 16) \
13+
| (JSONCPP_VERSION_PATCH << 8))
1214

1315
#ifdef JSONCPP_USING_SECURE_MEMORY
1416
#undef JSONCPP_USING_SECURE_MEMORY

0 commit comments

Comments
 (0)