diff options
author | dundargoc <gocdundar@gmail.com> | 2023-12-01 17:17:55 +0100 |
---|---|---|
committer | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-12-01 19:44:40 +0100 |
commit | c58b2ee58e42e81d73f44f201b1f8c4c41ba21aa (patch) | |
tree | b66876b76ffb212644de15fc02282ff0e7208b74 /src | |
parent | ce6fefbab9b6a902e725534c91ba3aa1025e5957 (diff) | |
download | rneovim-c58b2ee58e42e81d73f44f201b1f8c4c41ba21aa.tar.gz rneovim-c58b2ee58e42e81d73f44f201b1f8c4c41ba21aa.tar.bz2 rneovim-c58b2ee58e42e81d73f44f201b1f8c4c41ba21aa.zip |
refactor: remove SIZEOF_INT check
I have not seen any indication that this is a problem tha can occur with
cmake.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/vim_defs.h | 7 |
1 files changed, 0 insertions, 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, |