Changes in src/builder.cpp [12298c:f714979]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/builder.cpp
r12298c rf714979 1025 1025 else { 1026 1026 cout << Verbose(0) << "Evaluating npn-convex envelope."; 1027 ofstream *output = new ofstream(argv[argptr], ios::trunc); 1027 1028 cout << Verbose(1) << "Storing tecplot data in " << argv[argptr] << "." << endl; 1028 Find_non_convex_border((ofstream *)&cout, argv[argptr], mol); 1029 Find_non_convex_border((ofstream *)&cout, output, mol); 1030 output->close(); 1031 delete(output); 1029 1032 argptr+=1; 1030 1033 } … … 1034 1037 if ((argptr >= argc) || (argv[argptr][0] == '-')) { 1035 1038 ExitFlag = 255; 1036 cerr << "Not enough or invalid arguments given for storing temp erature: -T <temperature file>" << endl;1039 cerr << "Not enough or invalid arguments given for storing tempature: -T <temperature file>" << endl; 1037 1040 } else { 1038 1041 cout << Verbose(1) << "Storing temperatures in " << argv[argptr] << "." << endl;
Note:
See TracChangeset
for help on using the changeset viewer.