Applied patch [ 1195797 ] Fixes to compile on Win64
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34241 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -341,7 +341,7 @@ protected: \
|
||||
/* returns NULL if not found */ \
|
||||
Node** GetNodePtr( const const_key_type& key ) const \
|
||||
{ \
|
||||
unsigned long hash = m_hasher( key ); \
|
||||
unsigned long hash = wx_static_cast(unsigned long, m_hasher( key )); \
|
||||
Node** node = &m_table[hash % m_tableBuckets]; \
|
||||
\
|
||||
while( *node ) \
|
||||
@@ -358,7 +358,7 @@ protected: \
|
||||
/* expressing it in terms of GetNodePtr is 5-8% slower :-( */ \
|
||||
Node* GetNode( const const_key_type& key ) const \
|
||||
{ \
|
||||
unsigned long hash = m_hasher( key ); \
|
||||
unsigned long hash = wx_static_cast(unsigned long, m_hasher( key )); \
|
||||
Node* node = m_table[hash % m_tableBuckets]; \
|
||||
\
|
||||
while( node ) \
|
||||
|
Reference in New Issue
Block a user