#include "Person.h"
#include <string>
using namespace std;
string Person::toSimpleString(){
return getFirstName() + " " + getLastName() + ", Age " + to_string(5);
}
All of my strings are working fine but I cannot get the to_string function to work at all. Eclipse keeps telling me it is out of scope. Wht