Docs: TABs to Spaces

Replace TABs with four (4) spaces in code docs.
This commit is contained in:
Axel Huebl
2018-08-28 16:17:37 +02:00
committed by Martin Hořeňovský
parent 9773d89ab4
commit 7667a7d89c
4 changed files with 23 additions and 23 deletions

View File

@@ -45,7 +45,7 @@ int main( int argc, char* argv[] )
int returnCode = session.applyCommandLine( argc, argv );
if( returnCode != 0 ) // Indicates a command line error
return returnCode;
return returnCode;
// writing to session.configData() or session.Config() here
// overrides command line args
@@ -94,7 +94,7 @@ int main( int argc, char* argv[] )
// Let Catch (using Clara) parse the command line
int returnCode = session.applyCommandLine( argc, argv );
if( returnCode != 0 ) // Indicates a command line error
return returnCode;
return returnCode;
// if set on the command line then 'height' is now set at this point
if( height > 0 )