# HG changeset patch # User František Kučera # Date 1543849901 -3600 # Node ID 7c84323969d1ba053248c383291bc43f7a9856cc # Parent 7e0211f00413918db10cb77b8470710c55c8a746 CLI: untieStdIO() to avoid unwanted implicit flush() calls on std::cout → less write() calls diff -r 7e0211f00413 -r 7c84323969d1 src/relpipe-out-xml.cpp --- a/src/relpipe-out-xml.cpp Sat Dec 01 23:22:41 2018 +0100 +++ b/src/relpipe-out-xml.cpp Mon Dec 03 16:11:41 2018 +0100 @@ -32,6 +32,8 @@ using namespace relpipe::out::xml; int main(int argc, char** argv) { + setlocale(LC_ALL, ""); + CLI::untieStdIO(); CLI cli(argc, argv); int resultCode = CLI::EXIT_CODE_UNEXPECTED_ERROR;