[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: problems switching to gcc 3.3.2
From: |
Christian Christmann |
Subject: |
Re: problems switching to gcc 3.3.2 |
Date: |
Fri, 01 Apr 2005 18:03:13 +0200 |
>> compiling my source files with gcc 2.95.3 works fine. When I switch to
>> gcc 3.3.2 and try to compile the same files I get some error messages.
>
> The gcc-3.x series is much more strict in its standard conformance.
>
> > #include <map>
> > #include <string>
>
> Add:
>
> using namespace std;
>
> > class HashTable
> > {
> > map<int, void*> nhash; //line 49
>
Thanks, it works.
> Cheers,
Chris