Aさん
修訂 | f749a95c36877bcb2193bce94e4a273e71bdb942 (tree) |
---|---|
時間 | 2011-01-18 02:14:21 |
作者 | beru <berupon@gmai...> |
Commiter | beru |
new idea for typed containers
@@ -82,8 +82,9 @@ enum eValueType : uint8_t { | ||
82 | 82 | var_array_t = 16, |
83 | 83 | var_map_t = 17, |
84 | 84 | |
85 | - typed_array_t = 50 + value_t, | |
86 | - typed_map_t = 100 + value_t, | |
85 | + // read next byte to fetch value_t | |
86 | + typed_array_t = 254, | |
87 | + typed_map_t = 255, | |
87 | 88 | |
88 | 89 | } |
89 | 90 |