Warm tip: This article is reproduced from serverfault.com, please click

C++ compile error: has initializer but incomplete type

发布于 2012-11-17 06:03:02

I am coding in Eclipse and have something like the following:

#include <ftream>
#include <iostream>

void read_file(){
    char buffer[1025];
    std::istringstream iss(buffer);
}

However, when I try to build, I get the following error: variable 'std::istringstream iss' has initializer but incomplete type

Any quick thoughts? I have googled around and it seems like most people with this problem simply did not include the right header files which I believe I am doing correctly.

Questioner
Aneem
Viewed
0
198k 2014-06-23 00:13:20

You need this include:

#include <sstream>