Frustration levels mounting.
-
Several hours overtime at work and I am rewarded with this little gem from VS 6.0
Compiling... StdAfx.cpp Compiling... TestMatrixTemplate.cpp c:\documents and settings\windows user\my documents\john's work folder\testmatrixtemplate\generalmatrixclass.h(60) : fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'msc1.cpp', line 1786) Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information Command line warning D4028 : minimal rebuild failure, reverting to normal build Error executing cl.exe. TestMatrixTemplate.exe - 1 error(s), 1 warning(s)
Can anyone provide any insight as to what the problem REALLY is? The generalmatrixclass.h file is a template for a proprietary matrix class. Could there be something wrong with the implementation in the .h that would cause this? John Theal Physicist/Mathematical Programmer Digital Immersion Software Corporation Got CAD? http://www.presenter3d.com[^] http://www.merlin3d.com[^] -
Several hours overtime at work and I am rewarded with this little gem from VS 6.0
Compiling... StdAfx.cpp Compiling... TestMatrixTemplate.cpp c:\documents and settings\windows user\my documents\john's work folder\testmatrixtemplate\generalmatrixclass.h(60) : fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'msc1.cpp', line 1786) Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information Command line warning D4028 : minimal rebuild failure, reverting to normal build Error executing cl.exe. TestMatrixTemplate.exe - 1 error(s), 1 warning(s)
Can anyone provide any insight as to what the problem REALLY is? The generalmatrixclass.h file is a template for a proprietary matrix class. Could there be something wrong with the implementation in the .h that would cause this? John Theal Physicist/Mathematical Programmer Digital Immersion Software Corporation Got CAD? http://www.presenter3d.com[^] http://www.merlin3d.com[^]I've got this a number of times when trying to use template functionality that isn't supported in VC6.0. In particular, whenever i've used a member function template, if i implemented it outside of the class definition (in a .inl file for eg) i would always get this problem - that one was resolved by moving the implementation into class itself. If you post the code, i might be able to help further, otherwise i would suggest selectively commenting stuff out until it compiles :-) Dave http://www.cloudsofheaven.org