Skip to content

Commit ba33089

Browse files
jacobsacdunn2001
authored andcommitted
Ran clang-format again, this time hitting .inl files too.
clang-format -i $(find . -name '*.h' -or -name '*.cpp' -or -name '*.inl')
1 parent 57dde78 commit ba33089

File tree

4 files changed

+837
-1128
lines changed

4 files changed

+837
-1128
lines changed

include/json/version.h

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,15 @@
22
// and "version.h.in" files.
33
// Run CMake configure step to update it.
44
#ifndef JSON_VERSION_H_INCLUDED
5-
# define JSON_VERSION_H_INCLUDED
5+
#define JSON_VERSION_H_INCLUDED
66

7-
# define JSONCPP_VERSION_STRING "0.7.0"
8-
# define JSONCPP_VERSION_MAJOR 0
9-
# define JSONCPP_VERSION_MINOR 7
10-
# define JSONCPP_VERSION_PATCH 0
11-
# define JSONCPP_VERSION_QUALIFIER
12-
# define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
7+
#define JSONCPP_VERSION_STRING "0.7.0"
8+
#define JSONCPP_VERSION_MAJOR 0
9+
#define JSONCPP_VERSION_MINOR 7
10+
#define JSONCPP_VERSION_PATCH 0
11+
#define JSONCPP_VERSION_QUALIFIER
12+
#define JSONCPP_VERSION_HEXA \
13+
((JSONCPP_VERSION_MAJOR << 24) | (JSONCPP_VERSION_MINOR << 16) | \
14+
(JSONCPP_VERSION_PATCH << 8))
1315

1416
#endif // JSON_VERSION_H_INCLUDED

0 commit comments

Comments
 (0)