Changes in / [62680e:9757d9]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/builder.cpp
r62680e r9757d9 2502 2502 char **Arguments = NULL; 2503 2503 int ArgcSize = 0; 2504 int ExitFlag = 0;2505 2504 bool ArgumentsCopied = false; 2506 2505 … … 2530 2529 char ConfigFileName[MAXSTRINGSIZE]; 2531 2530 // handle arguments by ParseCommandLineOptions() 2532 ExitFlag =ParseCommandLineOptions(argc,argv,World::getInstance().getMolecules(),World::getInstance().getPeriode(),*World::getInstance().getConfig(), (char *&)ConfigFileName, ArgcList);2531 ParseCommandLineOptions(argc,argv,World::getInstance().getMolecules(),World::getInstance().getPeriode(),*World::getInstance().getConfig(), (char *&)ConfigFileName, ArgcList); 2533 2532 // copy all remaining arguments to a new argv 2534 2533 Arguments = Malloc<char *>(ArgcList.size(), "main - **Arguments"); … … 2573 2572 } 2574 2573 2575 return ( ExitFlag == 1 ? 0 : ExitFlag);2574 return (0); 2576 2575 } 2577 2576
Note:
See TracChangeset
for help on using the changeset viewer.