Skip to content

Commit 15297c1

Browse files
committed
Updating according to John's comments.
1 parent 2a84f35 commit 15297c1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/simdjson/arm64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
#ifndef SIMDJSON_IMPLEMENTATION_ARM64
1111
#define SIMDJSON_IMPLEMENTATION_ARM64 (SIMDJSON_IS_ARM64)
12-
#define SIMDJSON_CAN_ALWAYS_RUN_ARM64 (SIMDJSON_IS_ARM64)
1312
#endif
13+
#define SIMDJSON_CAN_ALWAYS_RUN_ARM64 SIMDJSON_IMPLEMENTATION_ARM64 && SIMDJSON_IS_ARM64
1414

1515
#include "simdjson/internal/isadetection.h"
1616
#include "simdjson/internal/jsoncharutils_tables.h"

include/simdjson/ppc64.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99

1010
#ifndef SIMDJSON_IMPLEMENTATION_PPC64
1111
#define SIMDJSON_IMPLEMENTATION_PPC64 (SIMDJSON_IS_PPC64)
12-
#define SIMDJSON_CAN_ALWAYS_RUN_PPC64 (SIMDJSON_IS_PPC64)
1312
#endif
13+
#define SIMDJSON_CAN_ALWAYS_RUN_PPC64 SIMDJSON_IMPLEMENTATION_PPC64 && SIMDJSON_IS_PPC64
1414

1515
#include "simdjson/internal/isadetection.h"
1616
#include "simdjson/internal/jsoncharutils_tables.h"

0 commit comments

Comments
 (0)