RBB
11-11-2007, 07:51 AM
When trying to compile "hash.h" with Borland C++ Version 5, I get the following compiler error:
C++ Fatal Error] hash.h(138): F1004 Internal compiler error at 0x12548c1 with base 0x1200000
The error is directed at this section of "hahs.h" ->
===========
template<class keyT, class elT, class hfnT>
struct Hash : Hashtable<keyT, hfnT> {
using Hashtable<keyT,hfnT>::iget;
using Hashtable<keyT,hfnT>::iset;
using Hashtable<keyT,hfnT>::ierase;
vector<elT> els;
.
.
.
============
Is there a work around or solution to this problem.
Thank you for the help,
RBB
C++ Fatal Error] hash.h(138): F1004 Internal compiler error at 0x12548c1 with base 0x1200000
The error is directed at this section of "hahs.h" ->
===========
template<class keyT, class elT, class hfnT>
struct Hash : Hashtable<keyT, hfnT> {
using Hashtable<keyT,hfnT>::iget;
using Hashtable<keyT,hfnT>::iset;
using Hashtable<keyT,hfnT>::ierase;
vector<elT> els;
.
.
.
============
Is there a work around or solution to this problem.
Thank you for the help,
RBB