summaryrefslogtreecommitdiff
path: root/zend
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-01-26 10:16:52 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2015-01-26 10:16:52 +0100
commitf0147293990f2a400912f4f8abd1b456319da0e6 (patch)
tree2481801b779330eccdd12126897f12918fac3a67 /zend
parente363d36a55e74d12aeef28b2a4b1f3ba074495fd (diff)
fixed _NOEXCEPT macro for normal compilers, updated version number to force recompile of extensions after we introduced the constants
Diffstat (limited to 'zend')
-rw-r--r--zend/includes.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/zend/includes.h b/zend/includes.h
index 93c74ec..31d3963 100644
--- a/zend/includes.h
+++ b/zend/includes.h
@@ -44,19 +44,9 @@
#define BOOL2SUCCESS(b) ((b) ? SUCCESS : FAILURE)
/**
- * Macro to be able to support MSVC compiler
- */
-#ifndef _NOEXCEPT
-# ifndef _MSC_VER
-# define _NOEXCEPT noexecpt
-# else
-# define _NOEXCEPT __declspec(nothrow)
-# endif
-#endif
-
-/**
* Include other files from this library
*/
+#include "../include/noexcept.h"
#include "../include/version.h"
#include "../include/inivalue.h"
#include "../include/ini.h"