We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d9bcf52 commit 75c75acCopy full SHA for 75c75ac
include/simdjson/common_defs.h
@@ -47,15 +47,6 @@ constexpr size_t DEFAULT_MAX_DEPTH = 1024;
47
#define DEBUG_BLOCK(name, block)
48
#endif
49
50
-#if !defined(SIMDJSON_REGULAR_VISUAL_STUDIO) && !defined(SIMDJSON_NO_COMPUTED_GOTO)
51
- // We assume here that *only* regular visual studio
52
- // does not support computed gotos.
53
- // Implemented using Labels as Values which works in GCC and CLANG (and maybe
54
- // also in Intel's compiler), but won't work in MSVC.
55
- // Compute gotos are good for performance, enable them if you can.
56
- #define SIMDJSON_USE_COMPUTED_GOTO
57
-#endif
58
-
59
// Align to N-byte boundary
60
#define ROUNDUP_N(a, n) (((a) + ((n)-1)) & ~((n)-1))
61
#define ROUNDDOWN_N(a, n) ((a) & ~((n)-1))
0 commit comments