aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/json.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/unstable/json.cpp')
-rw-r--r--src/unstable/json.cpp6
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
835Bu::Formatter &Bu::operator<<( Bu::Formatter &f, const Bu::Json &j )
836{
837 f.write( j.toString() );
838 return f;
839}
840