The INT_PTR as defined by Microsoft in some MSVC files running WinAPIs, is a __int64 in x64 configuration. because of this it is a type mismatch and generates warning C4244 - Severity Code Description Project File Line Suppression State Warning C4244 '=': conversion from 'INT_PTR' to 'I32', possible loss of data PhxProg2 C:\Strawberry\perl\lib\CORE\inline.h 2283 how possibly can we get around this, I believe this will be a problem everywhere the project configuration is x64 and INT_PTR is a __int64.

below is an example of the line having this warning, such multiple warnings exists.  cx->blk_eval.old_cxsubix   = PL_curstackinfo->si_cxsubix;

In reply to C4244 Warning in inline.h file while using Win64 configuration by MubinSkt

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.