core/com.nokia.carbide.cpp.compiler.doc.user/html/pragmas/p_warn_ptr_int_conv.htm
changeset 0 fb279309251b
child 1641 2b3996fc09a1
equal deleted inserted replaced
-1:000000000000 0:fb279309251b
       
     1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
       
     2 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
       
     3   <head>
       
     4     <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
       
     5     <meta http-equiv="Content-Style-Type" content="text/css" />
       
     6     <meta name="LASTUPDATED" content="06/17/05 11:09:43" />
       
     7     <title>warn_ptr_int_conv</title>
       
     8 	<link rel="StyleSheet" href="../../book.css" type="text/css"/>
       
     9   </head>
       
    10 
       
    11 <body>
       
    12 <h3>warn_ptr_int_conv</h3>
       
    13 <p>Controls the recognition of the conversion of pointer values to incorrectly-sized integral values.</p>
       
    14 <h5>Syntax</h5>
       
    15   <p class="code">#pragma warn_ptr_int_conv on | off | reset</p>
       
    16   <h5>Targets</h5>
       
    17   All platforms.<br />
       
    18   <h5>Remarks</h5>
       
    19   <p>If you enable this pragma, the compiler issues a warning if an expression attempts to convert a pointer value to an integral type that is not large enough to hold the pointer value. </p>
       
    20   <div class="listing">
       
    21       <h4> Listing 10.44 Example for #pragma warn_ptr_int_conv</h4>
       
    22       <p>#pragma warn_ptr_int_conv on </p>
       
    23     <p>char *my_ptr;<br />
       
    24     char too_small = (char)my_ptr; // WARNING: char is too small</p>
       
    25   </div>
       
    26 <p>See also pragma <a href="p_warn_any_ptr_int_conv.htm">warn_any_ptr_int_conv</a>.</p>
       
    27 <p>For more information about this warning, see &ldquo;Common Errors&rdquo;.</p>
       
    28 <p>This pragma corresponds to the Pointer / Integral Conversions setting . To check this setting, use <span class="code">__option (warn_ptr_int_conv)</span><span class="code"></span>, described in <a href="../symbols/sym_settings.htm">Checking Settings</a>. The default setting is <span class="code">off</span>.</p>
       
    29 <p></p>
       
    30 <div id="footer">Copyright &copy; 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. <br>License: <a href="http://www.eclipse.org/legal/epl-v10.html">http://www.eclipse.org/legal/epl-v10.html</a></div>
       
    31 
       
    32 
       
    33 </body>
       
    34 </html>