xslt: flush rather than endl for messages

This commit is contained in:
Jez Higgins 2024-09-10 12:31:45 +01:00
parent 3454ba8809
commit adfc70849d

View file

@ -115,7 +115,9 @@ public:
virtual Output<string_type, string_adaptor>& asOutput() { return *this; } virtual Output<string_type, string_adaptor>& asOutput() { return *this; }
void flush() { stream_ << std::endl; } void flush() {
stream_.flush();
}
protected: protected:
typedef typename Output<string_type, string_adaptor>::Settings Settings; typedef typename Output<string_type, string_adaptor>::Settings Settings;