Changeset 3104 for trunk


Ignore:
Timestamp:
10/04/16 12:16:08 (8 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: No/Yes? List JIRA ticket.

Ready for Test: Yes/No?

Interface Changes: Yes/No?

What Interface Changed: Please list interface changes

Test Programs: List test programs

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...


Do not use C++11 feature

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/external-alma/atnf/PKSIO/NROFITSDataset.cc

    r3103 r3104  
    849849  string str24( 24, ' ' ) ;
    850850
    851   for (auto i = 0u; i < 4u; ++i) {
     851  for (unsigned int i = 0u; i < 4u; ++i) {
    852852    record_->LSFIL[i] = ' ';
    853853  }
     
    880880  //cout << "LAVST(" << i << ") = " << record_->LAVST << endl ;
    881881  //
    882   for (auto i = 0u; i < 8u; ++i) {
     882  for (unsigned int i = 0u; i < 8u; ++i) {
    883883    record_->SCANTP[i] = ' ';
    884884  }
     
    997997  //cout << "YY(" << i << ") = " << record_->YY << endl ;
    998998  //
    999   for (auto i = 0u; i < 4u; ++i) {
     999  for (unsigned int i = 0u; i < 4u; ++i) {
    10001000    record_->ARRYT[i] = ' ';
    10011001  }
Note: See TracChangeset for help on using the changeset viewer.