Changeset 12967 for trunk/FACT++/src


Ignore:
Timestamp:
02/29/12 10:30:19 (13 years ago)
Author:
tbretz
Message:
Fixed some trivial compiler warnings.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/fitsdump.cc

    r12943 r12967  
    355355#endif
    356356
    357         ostringstream out;
    358         out.precision(fout.precision());
     357        ostringstream sout;
     358        sout.precision(fout.precision());
    359359        for (auto it=cols.begin(); it!=cols.end(); it++)
    360360        {
     
    368368                    break;
    369369                case 'B':
    370                     out << (unsigned int)reinterpret_cast<const unsigned char*>(it->ptr)[i] << " ";
     370                    sout << (unsigned int)reinterpret_cast<const unsigned char*>(it->ptr)[i] << " ";
    371371                    break;
    372372                case 'L':
    373                     out << reinterpret_cast<const bool*>(it->ptr)[i] << " ";
     373                    sout << reinterpret_cast<const bool*>(it->ptr)[i] << " ";
    374374                    break;
    375375                case 'I':
    376                     out << reinterpret_cast<const int16_t*>(it->ptr)[i] << " ";
     376                    sout << reinterpret_cast<const int16_t*>(it->ptr)[i] << " ";
    377377                    break;
    378378                case 'J':
    379                     out << reinterpret_cast<const int32_t*>(it->ptr)[i] << " ";
     379                    sout << reinterpret_cast<const int32_t*>(it->ptr)[i] << " ";
    380380                    break;
    381381                case 'K':
    382                     out << reinterpret_cast<const int64_t*>(it->ptr)[i] << " ";
     382                    sout << reinterpret_cast<const int64_t*>(it->ptr)[i] << " ";
    383383                    break;
    384384                case 'E':
    385                     out << reinterpret_cast<const float*>(it->ptr)[i] << " ";
     385                    sout << reinterpret_cast<const float*>(it->ptr)[i] << " ";
    386386                    break;
    387387                case 'D':
    388                     out << reinterpret_cast<const double*>(it->ptr)[i] << " ";
     388                    sout << reinterpret_cast<const double*>(it->ptr)[i] << " ";
    389389                    break;
    390390                default:
     
    399399
    400400            if (it->col.type=='A')
    401                 out << "'" << msg << "' ";
     401                sout << "'" << msg << "' ";
    402402        }
    403403#ifdef HAVE_ROOT
     
    405405            continue;
    406406#endif
    407         fout << out.str() << endl;
     407        fout << sout.str() << endl;
    408408    }
    409409}
     
    424424        *it = ' '+*it;
    425425
    426         string::const_iterator beg = it->begin();
    427         string::const_iterator end = it->end();
     426        string::const_iterator ibeg = it->begin();
     427        string::const_iterator iend = it->end();
    428428
    429429        boost::smatch what;
    430         while (boost::regex_search(beg, end, what, expr, boost::match_extra))
     430        while (boost::regex_search(ibeg, iend, what, expr, boost::match_extra))
    431431        {
    432432            const string all  = what[0];
     
    438438            if (ic==cols.end())
    439439            {
    440                 beg++;
     440                ibeg++;
    441441                //cout << "Column '" << name << "' does not exist." << endl;
    442442                //return vector<MyColumn>();
     
    458458            id << '[' << p << ']';
    459459
    460             it->replace(beg-it->begin()+what.position(1), what.length()-1, id.str());
    461 
    462             beg = what[0].first+3;
    463             end = it->end();
     460            it->replace(ibeg-it->begin()+what.position(1), what.length()-1, id.str());
     461
     462            ibeg = what[0].first+3;
     463            iend = it->end();
    464464
    465465            if (p<vec.size())
     
    575575            break;
    576576
    577         //data[p++] = first-1;
    578 
    579         ostringstream out;
    580         out.precision(fout.precision());
    581 
    582577        size_t p = 0;
    583578        for (auto it=vec.begin(); it!=vec.end(); it++, p++)
     
    590585
    591586        for (auto iform=form.begin()+1; iform!=form.end(); iform++)
    592             out << iform->EvalPar(0, data.data()) << " ";
    593 
    594         fout << out.str() << endl;
     587            fout << iform->EvalPar(0, data.data()) << " ";
     588
     589        fout << endl;
    595590    }
    596591#endif
Note: See TracChangeset for help on using the changeset viewer.