Changes between Initial Version and Version 1 of Ticket #830


Ignore:
Timestamp:
May 15, 2012, 6:28:17 PM (12 years ago)
Author:
gregboone
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #830 – Description

    initial v1  
    11Calling the managed interface function "Disposable::GetHashCode()" can result in an overflow exception if the internal pointer is larger than Int32.
    22
    3 svn diff ...\Fdo\Managed\Src\OSGeo\Runtime\Disposable.cpp
     3svn diff Disposable.cpp
    44
     5
     6{{{
    57 System::Int32 NAMESPACE_OSGEO_RUNTIME::Disposable::GetHashCode()
    68 {
     
    1214+    return ((System::Int32)(i64) ^ (System::Int32)(i64 >> 32));
    1315 }
    14 
     16}}}