summaryrefslogtreecommitdiff
path: root/include/type.h
diff options
context:
space:
mode:
authorEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-11 22:49:19 +0100
committerEmiel Bruijntjes <emiel.bruijntjes@copernica.com>2014-03-11 22:49:19 +0100
commit8c73a24872b5589cbb714be9c8588c7bf81c8563 (patch)
treed99c45763b66fefdfca2408713ae2a6927f1f90e /include/type.h
parent41d008988b482c643bd11464ba071de05f183d84 (diff)
implemented __toString, __toInteger, __toFloat and __toBool methods
Diffstat (limited to 'include/type.h')
-rw-r--r--include/type.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/type.h b/include/type.h
index bec0fd5..e5ebeda 100644
--- a/include/type.h
+++ b/include/type.h
@@ -21,7 +21,7 @@ enum class Type : unsigned char {
Null = 0,
Numeric = 1,
Float = 2,
- Bool = 3,
+ Boolean = 3,
Array = 4,
Object = 5,
String = 6,