Skip to content

Commit 02230fe

Browse files
committed
Change #ifdef to #if defined
1 parent dfc0b35 commit 02230fe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/rapidjson/internal/clzll.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ inline uint32_t clzll(uint64_t x) {
3838
// infinite loop in the software implementation.
3939
RAPIDJSON_ASSERT(x != 0);
4040

41-
#ifdef _MSC_VER
41+
#if defined(_MSC_VER)
4242
unsigned long r = 0;
43-
#ifdef _WIN64
43+
#if defined(_WIN64)
4444
_BitScanReverse64(&r, x);
4545
#else
4646
// Scan the high 32 bits.

0 commit comments

Comments
 (0)