The information in this article applies to:
SYMPTOMSInstantiating a C++ object with the thread attribute generates the following error message if the class contains private or protected members: To paraphrase page 397 of the "C++ Language Reference," class objects may be instantiated with the thread attribute if the objects do not need to be constructed or destructed. However, this error occurs even though the class does not have a constructor or a destructor. CAUSECurrently, thread local storage has only been implemented for aggregate types. An aggregate type is defined as an array or object of a class with no constructors, no private or protected members, no base classes, and no virtual functions. In this case, private or protected members make the class an aggregate; therefore, the error message is generated. RESOLUTIONTo avoid this error, make all private or protected members of the class public members. STATUSMicrosoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. MORE INFORMATION
The sample code below demonstrates how to produce and avoid the error
message. Uncomment the "public" keyword before the data member to avoid
the error.
Sample Code
Additional query words: kbVC400bug 8.00 9.00
Keywords : kbCompiler kbCPPonly kbVC kbVC100bug kbVC200bug kbVC400bug kbVC410bug kbVC420bug kbVC500bug kbVC600bug |
Last Reviewed: April 16, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |