Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

fatal error C1001: INTERNAL COMPILER ERROR... sigh

Status
Not open for further replies.

joeGrammar

Programmer
Jun 4, 2001
162
CA
compiler file 'msc1.cpp', line 1794

Is anyone experienced in these types of messages for this portion(line 1794) of the compiler?

Here's where it begins...

void SortElements( int (*fCmp)( const TCPtr *ppe1, const TCPtr *ppe2 ) )
{
sort( vector<T*>::begin(), vector<T*>::end(),
---> qsort2sort(ptr_fun(fCmp)) );
}

and:

template <class DataType>
QsortCmpToSortLess<DataType>
---> qsort2sort(const STD_NAMESPACE pointer_to_binary_function<const DataType *,
const DataType *, int>& qSrtCmp)
{
return QsortCmpToSortLess<DataType>(qSrtCmp);
}

Anyways, any help would be appreciated
 
Your compiller should give inside error description some see see reference to ...(place of error what you made), look at that. John Fill
1c.bmp


ivfmd@mail.md
 

c:\csdnbatch\apps\brp_dev_area\rel2\batch\inc\dynarray.hpp(150) : fatal error C1001: INTERNAL COMPILER ERROR
(compiler file 'msc1.cpp', line 1794)
Please choose the Technical Support command on the Visual C++
Help menu, or open the Technical Support help file for more information
c:\csdnbatch\apps\brp_dev_area\rel2\batch\inc\dynarray.hpp(148) : while compiling class-template member function 'void __thiscall DynArray<class TListData>::SortElements(int (__cdecl *)(const class TListData *const * ,const class TListData *
const * ))'
 
the error is not in h/hpp file. The error is what you do something wrong and VC++ doesn't know exactly where the error is. Try to remove calling of this h/hpp file and see if appears the error yet. John Fill
1c.bmp


ivfmd@mail.md
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top