neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit c58b2ee58e42e81d73f44f201b1f8c4c41ba21aa
parent ce6fefbab9b6a902e725534c91ba3aa1025e5957
Author: dundargoc <gocdundar@gmail.com>
Date:   Fri,  1 Dec 2023 17:17:55 +0100

refactor: remove SIZEOF_INT check

I have not seen any indication that this is a problem tha can occur with
cmake.

Diffstat:
Msrc/nvim/vim_defs.h | 7-------
1 file changed, 0 insertions(+), 7 deletions(-)

diff --git 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,