diff options
author | K.Takata <kentkt@csc.jp> | 2022-01-24 11:24:08 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-24 11:24:08 +0000 |
commit | c351dc1e0ca959084ba36bb350291334bf74b9f8 (patch) | |
tree | 2f8979a19950eadb42d7d3cc61f725bd90ad33d6 /src/if_ruby.c | |
parent | 058ee7c5699ef551be5aa04c66b3cffc436e9b08 (diff) | |
download | vim-git-c351dc1e0ca959084ba36bb350291334bf74b9f8.tar.gz |
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not usefulv8.2.4199
Problem: MS-Windows: Support for MSVC 2003 is not useful.
Solution: Remove the exceptions for MSVC 2003. (Ken Takata, closes #9616)
Diffstat (limited to 'src/if_ruby.c')
-rw-r--r-- | src/if_ruby.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/if_ruby.c b/src/if_ruby.c index c58c3c5f1..68c1e591a 100644 --- a/src/if_ruby.c +++ b/src/if_ruby.c @@ -32,11 +32,6 @@ # define RUBYEXTERN extern #endif -// suggested by Ariya Mizutani -#if (_MSC_VER == 1200) -# undef _WIN32_WINNT -#endif - #ifdef DYNAMIC_RUBY /* * This is tricky. In ruby.h there is (inline) function rb_class_of() |