From c58b2ee58e42e81d73f44f201b1f8c4c41ba21aa Mon Sep 17 00:00:00 2001 From: dundargoc Date: Fri, 1 Dec 2023 17:17:55 +0100 Subject: [PATCH] refactor: remove SIZEOF_INT check I have not seen any indication that this is a problem tha can occur with cmake. --- src/nvim/vim_defs.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/nvim/vim_defs.h b/src/nvim/vim_defs.h index 155265ac42..b408eb2fd7 100644 --- a/src/nvim/vim_defs.h +++ b/src/nvim/vim_defs.h @@ -8,13 +8,6 @@ #include "auto/config.h" -// Check if configure correctly managed to find sizeof(int). If this failed, -// it becomes zero. This is likely a problem of not being able to run the -// test program. Other items from configure may also be wrong then! -#if (SIZEOF_INT == 0) -# error Configure did not run properly. -#endif - enum { /// length of a buffer to store a number in ASCII (64 bits binary + NUL) NUMBUFLEN = 65,