FIX: C1001 from Conditional Operator in InitializerLast reviewed: December 18, 1997Article ID: Q166718 |
The information in this article applies to:
SYMPTOMSUse of the conditional operator in the member initialization list may cause the following error:
test.cpp(20) : fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'E:\utc\src\\P2\main.c', line 379) Please choose the Technical Support command on the Visual C++ Help menu, or open the Technical Support help file for more information RESOLUTIONInitialize the members in the function code instead of in the initialization list. -or- Modify the order in which the variables are declared. For example, with the following sample the error only occurs if you attempt to initialize the second variable rather than the first variable.
STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. This bug has been corrected in Visual Studio 97 Service Pack 1. For additional information about the Visual Studio 97 Service Pack 1, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q170365 TITLE : INFO: Visual Studio 97 Service Packs - What, Where, and Why MORE INFORMATION
Sample Code
/*Compiler options needed : none */ class B { char *_s[20]; public: ~B(); B(char const * = 0); }; class D { public: D(B& rB, int i); private: B m_b1; B m_b2; }; D::D(B& rB, int i) : m_b2(i ? rB : 0) {} // Error is on this line. Keywords : CLIss vcbuglist500 VS97FixlistSP3 kbcode kbtool VS97FixlistSP2 VS97FixlistSP1 kbbuglist Version : 5.0 Platform : NT WINDOWS Issue type : kbbug Solution Type : kbfix kbservicepack |
================================================================================
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |