>> 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
_______________________________________________
Help-gplusplus mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-gplusplus

Reply via email to