mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4199: MS-Windows: Support for MSVC 2003 is not useful
Problem: MS-Windows: Support for MSVC 2003 is not useful. Solution: Remove the exceptions for MSVC 2003. (Ken Takata, closes #9616)
This commit is contained in:
@@ -1716,12 +1716,6 @@ comment_start(char_u *p, int starts_with_colon UNUSED)
|
||||
*
|
||||
* This function may be called recursively!
|
||||
*/
|
||||
#if (_MSC_VER == 1200)
|
||||
/*
|
||||
* Avoid optimisation bug in VC++ version 6.0
|
||||
*/
|
||||
#pragma optimize( "g", off )
|
||||
#endif
|
||||
static char_u *
|
||||
do_one_cmd(
|
||||
char_u **cmdlinep,
|
||||
@@ -2648,9 +2642,6 @@ doend:
|
||||
|
||||
return ea.nextcmd;
|
||||
}
|
||||
#if (_MSC_VER == 1200)
|
||||
#pragma optimize( "", on )
|
||||
#endif
|
||||
|
||||
static char ex_error_buf[MSG_BUF_LEN];
|
||||
|
||||
|
Reference in New Issue
Block a user