I have to build an application on UNIX, Unixware 2.1.3, with a CCS compiler 3.0 and I keep having this error :
UX:acomp: ERROR: "//home/dino/treeit.h", line 32: internal compiler error: storage failure
*** Error code 1 (bu21)
UX:make: ERROR: fatal error.
I've look at the space available on my system and it's fine.
Here's the code section, in c++, from line 23 to 36 :
public:
bool operator != (iterator_impl const &p_iterator) const
{
return m_pNode != p_iterator.m_pNode;
}
__BTL_ITERATOR_IMPL_NAME()
:m_pNode(0)
{} //Line 32 is here!!!!!!!
__BTL_ITERATOR_IMPL_NAME(iterator_impl const &p_iterator)
:m_pNode(p_iterator.m_pNode)
{}
I'm not that good on UNIX and don't know if it's a operating system related problem. Can someone help me ? :)
Thanks!