mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
* Enable buffering of stderr in C++.
This commit is contained in:
parent
f7c7aad135
commit
c78bf11524
1 changed files with 4 additions and 0 deletions
|
@ -53,6 +53,10 @@ int main(int argc, char * * argv)
|
|||
ATerm bottomOfStack;
|
||||
ATinit(argc, argv, &bottomOfStack);
|
||||
|
||||
/* Turn on buffering for cerr. */
|
||||
char buf[1024];
|
||||
cerr.rdbuf()->pubsetbuf(buf, sizeof(buf));
|
||||
|
||||
try {
|
||||
initAndRun(argc, argv);
|
||||
} catch (UsageError & e) {
|
||||
|
|
Loading…
Reference in a new issue