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 8c766dd..7e6387b 100644 --- a/src/unstable/json.cpp +++ b/src/unstable/json.cpp | |||
@@ -832,3 +832,9 @@ void Bu::Json::writeStr( const Bu::UtfString &sStr, Bu::Stream &sOutput ) const | |||
832 | sOutput.write("\"", 1 ); | 832 | sOutput.write("\"", 1 ); |
833 | } | 833 | } |
834 | 834 | ||
835 | Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::Json &j ) | ||
836 | { | ||
837 | f.write( j.toString() ); | ||
838 | return f; | ||
839 | } | ||
840 | |||