|
From: gagsays <ga...@gm...> - 2010-07-14 18:34:35
|
Hello
i have recently updated my MinGW suite (gcc 4.5.0)
but now i am getting this (see below) strange warning (no errors)
||warning: auto-importing has been activated without --enable-auto-import
specified on the command line.|
||Info: resolving std::cout by linking to __imp___ZSt4cout |
||=== Build finished: 0 errors, 1 warnings ===|
even if i compile the simple program below
----------------------------------------------
#include <iostream>
int main()
{
std :: cout << "Hello";
return 0;
}
-----------------------------------------
btw i am using code::blocks as my IDE, if it matter.
thanks
please help me
|