made flush return true by default

[SVN r28112]
This commit is contained in:
Jonathan Turkanis
2005-04-11 14:59:03 +00:00
parent 37577ecfc1
commit 94f308c103

View File

@@ -559,7 +559,7 @@ struct flush_filter_impl<flushable_tag> {
template<>
struct flush_filter_impl<any_tag> {
template<typename T, typename Sink>
static bool flush(T& t, Sink& snk) { return false; }
static bool flush(T& t, Sink& snk) { return true; }
};
//------------------Definition of imbue_impl----------------------------------//