From 83c0210d84179f3fd00774a757bd9e7dc8a42d32 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 8 Mar 2012 11:26:47 +0200 Subject: Print usage/version information to STDOUT instead of STDERR --- doc/guide/index.xhtml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'doc') diff --git a/doc/guide/index.xhtml b/doc/guide/index.xhtml index 638b65b..1e85997 100644 --- a/doc/guide/index.xhtml +++ b/doc/guide/index.xhtml @@ -343,11 +343,11 @@ private: using namespace std; void -usage () +usage (ostream& os) { - cerr << "usage: driver [options] <names>" << endl - << "options:" << endl; - options::print_usage (cerr); + os << "usage: driver [options] <names>" << endl + << "options:" << endl; + options::print_usage (os); } int @@ -360,14 +360,14 @@ main (int argc, char* argv[]) if (o.help ()) { - usage (); + usage (cout); return 0; } if (end == argc) { cerr << "no names provided" << endl; - usage (); + usage (cerr); return 1; } @@ -386,7 +386,7 @@ main (int argc, char* argv[]) catch (const cli::exception& e) { cerr << e << endl; - usage (); + usage (cerr); return 1; } } -- cgit v1.1