64 bit portability issues - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T09:39:19Zhttp://stackoverflow.com/feeds/question/341303http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/341303/64-bit-portability-issues164 bit portability issuesWhyamistilltyping2008-12-04T16:53:33Z2009-02-07T14:07:00Z
<p>All this originated from me poking at a compiler warning message (C4267) when attempting the following line:</p>
<pre><code>const unsigned int nSize = m_vecSomeVec.size();
</code></pre>
<p><code>size()</code> returns a size_t which although typedef'd to unsigned int, is not actually a unsigned int. This I believe have to do with 64 bit portability issues, however can someone explain it a bit better for me? ( I don't just want to disable 64bit warnings.)</p>
http://stackoverflow.com/questions/341303/64-bit-portability-issues/341341#3413412Answer by unwind for 64 bit portability issuesunwind2008-12-04T17:03:35Z2008-12-04T17:03:35Z<p>If <code>size_t</code> is typedef:ed to <code>unsigned int</code>, then of course it is an <code>unsigned int</code>, on your particular platform. But it is abstracted so that you cannot depend on it <em>always</em> being an <code>unsigned int</code>, it might be larger on some other platform.</p>
<p>Probably it has not been made larger since it would cost too much to do so, and e.g. vectors with more than 2^32 items in them are not very common.</p>
http://stackoverflow.com/questions/341303/64-bit-portability-issues/341344#3413443Answer by James Hopkin for 64 bit portability issuesJames Hopkin2008-12-04T17:04:41Z2008-12-04T17:04:41Z<p>When compiling for a 64-bit platform, <code>size_t</code> will be a 64-bit type. Because of this, Visual Studio gives warnings about assigning <code>size_t</code>s to <code>int</code>s when 'Detect 64-bit Portability Issues' is enabled.</p>
<p>Visual C++ gets this information about <code>size_t</code> through the <code>__w64</code> token, e.g. <code>__w64 unsigned int</code>.</p>
http://stackoverflow.com/questions/341303/64-bit-portability-issues/341349#3413490Answer by MSN for 64 bit portability issuesMSN2008-12-04T17:06:07Z2008-12-04T17:06:07Z<p>Depending on the compiler, <code>int</code> may be 32-bits in 64-bit land.</p>
<p>MSN</p>
http://stackoverflow.com/questions/341303/64-bit-portability-issues/341383#3413838Answer by Johannes Schaub - litb for 64 bit portability issuesJohannes Schaub - litb2008-12-04T17:15:58Z2008-12-04T17:15:58Z<p>It depends on the implementation. <code>std::size_t</code> for example has a minimal required size. But there is no upper limit. To avoid these kind of situations, always use the proper typedef:</p>
<pre><code>const std::vector<T>::size_type nSize = m_vecSomeVec.size();
</code></pre>
<p>You will be always on the safe side then.</p>
http://stackoverflow.com/questions/341303/64-bit-portability-issues/523816#5238160Answer by Andrey for 64 bit portability issuesAndrey2009-02-07T14:07:00Z2009-02-07T14:07:00Z<p>Andrey Karpov.
<a href="http://www.viva64.com/art-1-2-621693540.html" rel="nofollow">64 bits, Wp64, Visual Studio 2008, Viva64 and all the rest...</a></p>
<p><em>Abstract. The purpose of this article is to answer some questions related to safe port of C/C++ code on 64-bit systems. The article is written as an answer to the topic often discussed on forums and related to the use of /Wp64 key and Viva64 tool.</em></p>