I\'m trying to convert a std::string stored in a std::vector to an integer and pass it to a function as a parameter.
std::string
std::vector
This is a simplified vers
With C++11:
int value = std::stoi(record[i]);