From f2d79b89c4c4ebff1bc6f3963649d8842d4e6fae Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Wed, 7 Apr 2021 10:23:26 +0300 Subject: [PATCH] Remove unused variable --- lib/ultrajsonenc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ultrajsonenc.c b/lib/ultrajsonenc.c index a0587f3..756f5f2 100644 --- a/lib/ultrajsonenc.c +++ b/lib/ultrajsonenc.c @@ -73,7 +73,6 @@ The extra 2 bytes are for the quotes around the string */ #define RESERVE_STRING(_len) (2 + ((_len) * 6)) -static const double g_pow10[] = {1, 10, 100, 1000, 10000, 100000, 1000000, 10000000, 100000000, 1000000000, 10000000000, 100000000000, 1000000000000, 10000000000000, 100000000000000, 1000000000000000}; static const char g_hexChars[] = "0123456789abcdef"; static const char g_escapeChars[] = "0123456789\\b\\t\\n\\f\\r\\\"\\\\\\/";