Skip to content

Commit 2a240e3

Browse files
committed
Fixing style violation.
1 parent ee66fb1 commit 2a240e3

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

include/simdjson/simdjson_version.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
#define SIMDJSON_VERSION 0.2.0
66
namespace simdjson {
77
enum {
8-
SIMDJSON_VERSION_MAJOR = 0,
9-
SIMDJSON_VERSION_MINOR = 2,
10-
SIMDJSON_VERSION_REVISION = 0
8+
SIMDJSON_VERSION_MAJOR = 0,
9+
SIMDJSON_VERSION_MINOR = 2,
10+
SIMDJSON_VERSION_REVISION = 0
1111
};
1212
}
1313
#endif // SIMDJSON_INCLUDE_SIMDJSON_VERSION

tools/release.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ def topaddedversionstring(major, minor, rev):
8989
file.write("#define SIMDJSON_VERSION "+toversionstring(*newversion)+"\n")
9090
file.write("namespace simdjson {\n")
9191
file.write("enum {\n")
92-
file.write(" SIMDJSON_VERSION_MAJOR = "+str(newversion[0])+",\n")
93-
file.write(" SIMDJSON_VERSION_MINOR = "+str(newversion[1])+",\n")
94-
file.write(" SIMDJSON_VERSION_REVISION = "+str(newversion[2])+"\n")
92+
file.write(" SIMDJSON_VERSION_MAJOR = "+str(newversion[0])+",\n")
93+
file.write(" SIMDJSON_VERSION_MINOR = "+str(newversion[1])+",\n")
94+
file.write(" SIMDJSON_VERSION_REVISION = "+str(newversion[2])+"\n")
9595
file.write("};\n")
9696
file.write("}\n")
9797
file.write("#endif // SIMDJSON_INCLUDE_SIMDJSON_VERSION\n")

0 commit comments

Comments
 (0)