From 5058fb9e4b07bd746323d23e599ba95966943107 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 15 Dec 2015 12:49:03 +0100 Subject: [PATCH] src: remove unused BITS_PER_LONG macro Remove the unused and broken BITS_PER_LONG macro. Broken because x64 is the only 64 bits architecture where it produces the right result. PR-URL: https://github.com/nodejs/node/pull/4290 Reviewed-By: Colin Ihrig --- src/node_internals.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/node_internals.h b/src/node_internals.h index bfe4fced26297a..5ff6b63d21ab15 100644 --- a/src/node_internals.h +++ b/src/node_internals.h @@ -109,12 +109,6 @@ inline static int snprintf(char *buffer, size_t n, const char *format, ...) { #endif #endif -#if defined(__x86_64__) -# define BITS_PER_LONG 64 -#else -# define BITS_PER_LONG 32 -#endif - #ifndef ARRAY_SIZE # define ARRAY_SIZE(a) (sizeof((a)) / sizeof((a)[0])) #endif