Ignore:
Timestamp:
07/19/11 21:03:37 (13 years ago)
Author:
tbretz
Message:
Replaces ato/atof by stoi/stof; replaced boost::lexical_cast by to_string
File:
1 edited

Legend:

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

    r11476 r11479  
    172172            if (buffer.substr(0, 8)=="status: ")
    173173            {
    174                 status = atoi(buffer.c_str()+8);
     174                status = stoi(buffer.substr(8));
    175175                continue;
    176176            }
     
    178178            if (buffer.substr(0, 8)=="time_s: ")
    179179            {
    180                 time = atof(buffer.c_str()+8);
     180                time = stof(buffer.substr(8));
    181181                continue;
    182182            }
Note: See TracChangeset for help on using the changeset viewer.