*Core: Fixed Jsonize of ValueMap

git-svn-id: svn://ultimatepp.org/upp/trunk@4803 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2012-04-18 07:34:01 +00:00
parent 40330584fb
commit cd788be904
2 changed files with 2 additions and 1 deletions

View file

@ -114,6 +114,7 @@ String AsJSON(const Value& v, const String& sep, bool pretty)
return AsCString((String)v);
if(IsNull(v))
return "null";
DDUMP(v);
NEVER();
return "null";
}