summaryrefslogtreecommitdiff
path: root/include/type.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/type.h')
-rw-r--r--include/type.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/type.h b/include/type.h
index d248455..151919c 100644
--- a/include/type.h
+++ b/include/type.h
@@ -17,7 +17,7 @@ namespace Php {
* Supported types for variables
* The values are the same as the ones used internally in Zend
*/
-enum class Type : unsigned char {
+enum class PHPCPP_EXPORT Type : unsigned char {
Null = 0, // Null will allow any type
Numeric = 1,
Float = 2,
@@ -35,4 +35,3 @@ enum class Type : unsigned char {
* End of namespace
*/
}
-