DOCUMENT:Q138567 07-FEB-2002 [visualc] TITLE :BUG: Incorrect Function Name Binding in Function Templates PRODUCT :Microsoft C Compiler PROD/VER::2.0,2.1,2.2,4.0,4.1,4.2,5.0,6.0 OPER/SYS: KEYWORDS:kbCompiler kbCPPonly kbVC kbVC400bug kbVC500bug kbVC600bug ====================================================================== ------------------------------------------------------------------------------- The information in this article applies to: - The C/C++ Compiler (CL.EXE), used with: - Microsoft Visual C++, 32-bit Editions, versions 2.0, 2.1, 2.2, 4.0, 4.1 - Microsoft Visual C++, 32-bit Enterprise Edition, versions 4.2, 5.0, 6.0 - Microsoft Visual C++, 32-bit Professional Edition, versions 4.2, 5.0, 6.0 - Microsoft Visual C++, 32-bit Learning Edition, version 6.0 - Microsoft Visual C++.NET (2002) ------------------------------------------------------------------------------- SYMPTOMS ======== Given a function template G whose definition includes a function call to F that does not depend on a template parameter, the compiler does not bind function names at the point of the template definition. Instead the compiler binds them when the function template is instantiated. This could cause unexpected runtime results. CAUSE ===== This is a fairly recent change to the ANSI C++ working paper. The current version of the Microsoft compilers do not support this feature. STATUS ====== Microsoft has confirmed this to be a bug in the Microsoft products listed at the beginning of this article. MORE INFORMATION ================ Based on the ANSI C++ working paper draft (14.2.7), if a name can be bound at the point of the template definition and it is not a function called in a way that depends on a template parameter, it will be bound at the template definition point and the binding is not affected by later declarations. Sample Code to Demonstrate Problem ---------------------------------- /* Compile options needed: Default */ #include void F(char) { cout << "In F(char)" << endl; } template void G( T t ) { F(1); // F() is not dependent on T or t } void F(int) { cout <<"In F(int)" << endl; } void main() { G(2); G('a'); } /* The output from the program */ In F(int) In F(int) /* The output should be */ In F(char) In F(char) Additional query words: 9.00 10.00 10.10 10.20 ====================================================================== Keywords : kbCompiler kbCPPonly kbVC kbVC400bug kbVC500bug kbVC600bug Technology : kbVCsearch kbAudDeveloper kbCVCComp Version : :2.0,2.1,2.2,4.0,4.1,4.2,5.0,6.0 Issue type : kbbug ============================================================================= 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 2002.