summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/ini.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/ini.h b/include/ini.h
index b881cfe..2223bee 100644
--- a/include/ini.h
+++ b/include/ini.h
@@ -33,14 +33,13 @@ namespace Php {
* Usually you would choose where the setting can be changed based on how it is used. For example if you want to access
* the setting during RINIT stage then you would want PHP_INI_PERDIR because the setting would have no use after RINIT.
*/
- enum class Place : int {
+ enum Place : int {
User = (1<<0), // ZEND_INI_USER (1<<0)
Perdir = (1<<1), // ZEND_INI_PERDIR (1<<1)
System = (1<<2), // ZEND_INI_SYSTEM (1<<2)
All = (1<<0) | (1<<1) | (1<<2) // ZEND_INI_ALL (ZEND_INI_USER|ZEND_INI_PERDIR|ZEND_INI_SYSTEM)
};
-
/**
* default constructors
*/