Mam tę funkcję w moim programie, która konwertuje liczby całkowite na ciągi:
QString Stats_Manager::convertInt(int num)
{
stringstream ss;
ss << num;
return ss.str();
}
Ale kiedy to uruchamiam, pojawia się błąd:
aggregate 'std::stringstream ss' has incomplete type and cannot be defined
Nie bardzo wiem, co to oznacza. Ale jeśli wiesz, jak to naprawić lub potrzebujesz więcej kodu, po prostu skomentuj. Dzięki.
#include <sstream>