Почему возникает эта ошибка? Я ведь указал в коде #include <string>
Вот код:
#include <iostream>
#include <string>
using namespace std;
int main () {
string s;
s = to_string(49);
cout << s << "\n";
return 0;
}
А вот так он ругается:
test.cpp: In function ‘int main()’:
test.cpp:10:18: error: ‘to_string’ was not declared in this scope
s = to_string(49);
^
Система: Ubuntu 15.04 amd64
Версия компилятора: g++ (Ubuntu 4.9.2-10ubuntu13) 4.9.2