|
From: Thomas T. <tho...@ya...> - 2006-03-15 16:32:30
|
> Date: Tue, 14 Mar 2006 22:46:02 -0500
> From: Joseph McCay <joe...@gm...>
> To: min...@li...
> Subject: [Mingw-users] 52 errors with a simple map
> example.
> The following code gives me 52 errors. I am using
> mingw 3.4.5, and I
> got the same results with 3.4.4. What am I missing?
>
As Brian said, it's difficult to tell without seeing
the real code. But based on your error messages, I'll
bet you've mistakenly done something analogous to one
of the following:
Either:
namespace ptl {
#include <map> // erroneously imports std::map into
namespace ptl
}
or
namespace ptl {
using namespace std; // screws up gcc's look-up
rules.
}
Best regards,
Tom
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
|