summaryrefslogtreecommitdiff
path: root/Zend/zend_operators.h
diff options
context:
space:
mode:
authorKalle Sommer Nielsen <kalle@php.net>2015-03-29 07:10:39 +0200
committerKalle Sommer Nielsen <kalle@php.net>2015-03-29 07:10:39 +0200
commit313d01f30afc4649cbb9eedd2ec11a9fac5bf932 (patch)
tree7cc3e17b6596dec0e82249845f886e9e12babc0a /Zend/zend_operators.h
parent43457f960ff2e84c87297f09a9dcc0da93ccee32 (diff)
downloadphp-git-313d01f30afc4649cbb9eedd2ec11a9fac5bf932.tar.gz
Drop old VC support in Zend Engine, this also kills the remaining MessageBox fix for Windows 9x that Anatol changed a while back
Diffstat (limited to 'Zend/zend_operators.h')
-rw-r--r--Zend/zend_operators.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/Zend/zend_operators.h b/Zend/zend_operators.h
index 962b453bc2..9e937eba3b 100644
--- a/Zend/zend_operators.h
+++ b/Zend/zend_operators.h
@@ -416,10 +416,8 @@ ZEND_API void ZEND_FASTCALL zend_locale_sprintf_double(zval *op ZEND_FILE_LINE_D
convert_scalar_to_number(pzv); \
}
-#if HAVE_SETLOCALE && defined(ZEND_WIN32) && !defined(ZTS) && defined(_MSC_VER) && (_MSC_VER >= 1400)
-/* This is performance improvement of tolower() on Windows and VC2005
- * Gives 10-18% on bench.php
- */
+#if HAVE_SETLOCALE && defined(ZEND_WIN32) && !defined(ZTS) && defined(_MSC_VER)
+/* This performance improvement of tolower() on Windows gives 10-18% on bench.php */
#define ZEND_USE_TOLOWER_L 1
#endif