From e5f2e1ce7faeb8fb4609f7291e77d5b682685057 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Wed, 5 Sep 2012 20:44:55 +0000 Subject: This'll make *everything* rebuild. String formatters now support the end() call, which will force substitution and return a string. They now also support ending actions, which let us do great stuff like printing stuff out after formatting finished...and other stuff. --- src/stable/sio.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/stable/sio.h') diff --git a/src/stable/sio.h b/src/stable/sio.h index cc7b098..d9761b2 100644 --- a/src/stable/sio.h +++ b/src/stable/sio.h @@ -16,11 +16,11 @@ namespace Bu extern Bu::StdStream sioRaw; extern Bu::Formatter sio; - Bu::size print( Bu::Stream &s, const Bu::String &str ); - Bu::size print( const Bu::String &str ); + Bu::String::FormatProxy print( Bu::Stream &s, const Bu::String &str ); + Bu::String::FormatProxy print( const Bu::String &str ); - Bu::size println( Bu::Stream &s, const Bu::String &str ); - Bu::size println( const Bu::String &str ); + Bu::String::FormatProxy println( Bu::Stream &s, const Bu::String &str ); + Bu::String::FormatProxy println( const Bu::String &str ); }; #endif -- cgit v1.2.3