Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/builder.cpp

    r12298c rf714979  
    10251025                else {
    10261026                        cout << Verbose(0) << "Evaluating npn-convex envelope.";
     1027                        ofstream *output = new ofstream(argv[argptr], ios::trunc);
    10271028                        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);
    10291032                        argptr+=1;
    10301033                        }
     
    10341037              if ((argptr >= argc) || (argv[argptr][0] == '-')) {
    10351038                ExitFlag = 255;
    1036                 cerr << "Not enough or invalid arguments given for storing temperature: -T <temperature file>" << endl;
     1039                cerr << "Not enough or invalid arguments given for storing tempature: -T <temperature file>" << endl;
    10371040              } else {
    10381041                cout << Verbose(1) << "Storing temperatures in " << argv[argptr] << "." << endl;
Note: See TracChangeset for help on using the changeset viewer.