File tree 1 file changed +14
-7
lines changed
1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ namespace classdesc
34
34
{
35
35
template <class T >
36
36
void convert (StringKeyMap<T>& map, const json_pack_t & j)
37
- {j>>map;}
37
+ {if (j. type ()!=RESTProcessType::null) j>>map;}
38
38
39
39
template <class T >
40
40
void json_pack_stringKeyMap (json_pack_t & j,const string& d, const StringKeyMap<T>& a)
@@ -63,14 +63,21 @@ namespace classdesc
63
63
try
64
64
{
65
65
const json5_parser::mValue & val=json_find (j,d);
66
- if (val.type ()!=json5_parser::obj_type)
67
- throw json_pack_error (" %s is not an array" ,d.c_str ());
68
- else
66
+ switch (val.type ())
69
67
{
70
- const json5_parser::mObject & arr=val.get_obj ();
68
+ case json5_parser::obj_type:
69
+ {
70
+ const json5_parser::mObject & arr=val.get_obj ();
71
+ a.clear ();
72
+ for (json5_parser::mObject ::const_iterator i=arr.begin (); i!=arr.end (); ++i)
73
+ json_unpack (j,d+" ." +i->first ,a[i->first ]);
74
+ }
75
+ break ;
76
+ case json5_parser::null_type:
71
77
a.clear ();
72
- for (json5_parser::mObject ::const_iterator i=arr.begin (); i!=arr.end (); ++i)
73
- json_unpack (j,d+" ." +i->first ,a[i->first ]);
78
+ break ;
79
+ default :
80
+ throw json_pack_error (" %s is not an array" ,d.c_str ());
74
81
}
75
82
}
76
83
catch (json_pack_error&)
You can’t perform that action at this time.
0 commit comments