DOCUMENT:Q154539 04-AUG-2001 [visualc] TITLE :PRB: Including STL.H Causes Compiler Errors PRODUCT :Microsoft C Compiler PROD/VER:4.20 OPER/SYS: KEYWORDS:kbprb ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - The Standard C++ Library, included with: - Microsoft Visual C++, 32-bit Enterprise Edition, version 4.2 - Microsoft Visual C++, 32-bit Professional Edition, version 4.2 ------------------------------------------------------------------------------- SYMPTOMS ======== Programs that include "STL.H" generate different compiler errors, depending on the STL template class you try to instantiate. The compiler errors are all in STL header files. The sample code below illustrates some of these errors. CAUSE ===== STL.H contains typographical and syntax errors. RESOLUTION ========== STL.H was included with Visual C++ 4.2 by mistake. It is not part of the ANSI standard for Standard C++ Libraries and should not be used. Instead, include the individual header files associated with the particular STL component(s) the program is using. The sample code below, for example, will compile and run correctly if "#include " is changed to "#include ." STATUS ====== This behavior is by design. MORE INFORMATION ================ Sample Code ----------- /* Compile options needed: */ //workaround: change the following line to #include #include //workaround: change the "typedef" to: //typedef vector > INTVECT; typedef vector INTVECT; void main() { INTVECT ivect; } Additional query words: 4.20 kbdsd STL STL.H allocator vector deque list map multimap set multiset queue stack priority_queue ====================================================================== Keywords : kbprb Technology : kbVCsearch kbAudDeveloper kbVCLibrary Version : 4.20 Issue type : kbprb ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 2001.