diff options
Diffstat (limited to 'src/unstable/json.cpp')
-rw-r--r-- | src/unstable/json.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/unstable/json.cpp b/src/unstable/json.cpp index 5f6165c..6159ef3 100644 --- a/src/unstable/json.cpp +++ b/src/unstable/json.cpp | |||
@@ -13,6 +13,12 @@ Bu::Json::Json() : | |||
13 | { | 13 | { |
14 | } | 14 | } |
15 | 15 | ||
16 | Bu::Json::Json( const Bu::UtfString &sValue ) : | ||
17 | eType( String ), | ||
18 | uDat( sValue.get() ) | ||
19 | { | ||
20 | } | ||
21 | |||
16 | Bu::Json::Json( const Bu::String &sValue ) : | 22 | Bu::Json::Json( const Bu::String &sValue ) : |
17 | eType( String ), | 23 | eType( String ), |
18 | uDat( sValue ) | 24 | uDat( sValue ) |