The problem is really strange for me.
The code is as simple as possible:
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}
It is just helloworld as it is created from standart cpp project. I am sure it was worked. But after some time (really don't remember what have chaged...) I got an error:
error: explicit qualification in declaration of 'std::cout'
extern ostream std::cout; /// Linked to standard output
funny thing that is not in the project but inside iostream
some help? ^_^
.new information.: I was building boost library and for many of files I am getting the same error: explicit qualification in declaration of 'std::cout'
I use MinGW