diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-11 23:01:39 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-11 23:01:39 +0100 |
commit | 49c99fcca00740ae4feaba82bef4f9dc70b65318 (patch) | |
tree | c611d029f7c2f857dc78dec8796dbf19573c75fa /src/vimio.h | |
parent | 5489eab34528ba31054bc7c99af120b07f543b78 (diff) | |
download | vim-git-49c99fcca00740ae4feaba82bef4f9dc70b65318.tar.gz |
patch 8.2.0246: MSVC: deprecation warnings with Rubyv8.2.0246
Problem: MSVC: deprecation warnings with Ruby.
Solution: Move _CRT_SECURE_NO_DEPRECATE to build file. (Ken Takata,
closes #5622)
Diffstat (limited to 'src/vimio.h')
-rw-r--r-- | src/vimio.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/vimio.h b/src/vimio.h index 402b11381..a07620ca7 100644 --- a/src/vimio.h +++ b/src/vimio.h @@ -7,12 +7,6 @@ * See README.txt for an overview of the Vim source code. */ -// Visual Studio 2005 has 'deprecated' many of the standard CRT functions -#if _MSC_VER >= 1400 -# define _CRT_SECURE_NO_DEPRECATE -# define _CRT_NONSTDC_NO_DEPRECATE -#endif - // cproto fails on missing include files #ifndef PROTO # include <io.h> |