mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-15 19:48:00 +01:00
xslt: flush rather than endl for messages
This commit is contained in:
parent
3454ba8809
commit
adfc70849d
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue