summaryrefslogtreecommitdiff
path: root/dependencies/jsmn/jsmn.h
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2021-09-15 17:03:59 +0200
committerToni Uhlig <matzeton@googlemail.com>2021-09-15 17:03:59 +0200
commit2a5e5a020b14229e312294a345d3f079002f24e8 (patch)
treeab7cf78b16517fb70657ed9132214e6964f2bc79 /dependencies/jsmn/jsmn.h
parente54c2df63b292257822cd07678fa20b38552585f (diff)
parent8e096b19c1e0b45ccd43cc89d9d80b59bd783529 (diff)
Merge commit '8e096b19c1e0b45ccd43cc89d9d80b59bd783529'
Diffstat (limited to 'dependencies/jsmn/jsmn.h')
-rw-r--r--dependencies/jsmn/jsmn.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/dependencies/jsmn/jsmn.h b/dependencies/jsmn/jsmn.h
index 3178dcc97..41219b7dd 100644
--- a/dependencies/jsmn/jsmn.h
+++ b/dependencies/jsmn/jsmn.h
@@ -45,10 +45,10 @@ extern "C" {
*/
typedef enum {
JSMN_UNDEFINED = 0,
- JSMN_OBJECT = 1,
- JSMN_ARRAY = 2,
- JSMN_STRING = 3,
- JSMN_PRIMITIVE = 4
+ JSMN_OBJECT = 1 << 0,
+ JSMN_ARRAY = 1 << 1,
+ JSMN_STRING = 1 << 2,
+ JSMN_PRIMITIVE = 1 << 3
} jsmntype_t;
enum jsmnerr {