From 209c2303bc81f6d52fcf2431a93b8c3700c2f2c3 Mon Sep 17 00:00:00 2001 From: ibireme Date: Tue, 27 Oct 2020 20:50:31 +0800 Subject: [PATCH] fix unmatched `elif` --- src/yyjson.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/yyjson.h b/src/yyjson.h index 884f439..2130902 100644 --- a/src/yyjson.h +++ b/src/yyjson.h @@ -259,7 +259,7 @@ # if defined(__INT64_TYPE__) && defined(__UINT64_TYPE__) typedef __INT64_TYPE__ int64_t; typedef __UINT64_TYPE__ uint64_t; -# if defined(__GNUC__) || defined(__clang__) +# elif defined(__GNUC__) || defined(__clang__) __extension__ typedef long long int64_t; __extension__ typedef unsigned long long uint64_t; # elif defined(_LONG_LONG) || defined(__MWERKS__) || defined(_CRAYC) || \