From 54e6f9d4714fe8dd06b02a7f49bf178415523405 Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Tue, 2 Jul 2013 19:42:21 +0100 Subject: [PATCH] Slightly tweaked docs on supplying your own main --- docs/own-main.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/own-main.md b/docs/own-main.md index 08692940..3feda563 100644 --- a/docs/own-main.md +++ b/docs/own-main.md @@ -41,6 +41,7 @@ int main( int argc, char* const argv[] ) Catch::Session session; // There must be exactly once instance // writing to session.configData() here sets defaults + // this is the preferred way to set them int returnCode = session.applyCommandLine( argc, argv ); if( returnCode != 0 ) // Indicates a command line error @@ -48,6 +49,7 @@ int main( int argc, char* const argv[] ) // writing to session.configData() or session.Config() here // overrides command line args + // only do this if you know you need to return session.run(); }