64 bit portability issues - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T09:39:19Z http://stackoverflow.com/feeds/question/341303 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/341303/64-bit-portability-issues 1 64 bit portability issues Whyamistilltyping 2008-12-04T16:53:33Z 2009-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#341341 2 Answer by unwind for 64 bit portability issues unwind 2008-12-04T17:03:35Z 2008-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#341344 3 Answer by James Hopkin for 64 bit portability issues James Hopkin 2008-12-04T17:04:41Z 2008-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#341349 0 Answer by MSN for 64 bit portability issues MSN 2008-12-04T17:06:07Z 2008-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#341383 8 Answer by Johannes Schaub - litb for 64 bit portability issues Johannes Schaub - litb 2008-12-04T17:15:58Z 2008-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&lt;T&gt;::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#523816 0 Answer by Andrey for 64 bit portability issues Andrey 2009-02-07T14:07:00Z 2009-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>