From 1c1572053a4138106baee37f60c124fca256fa36 Mon Sep 17 00:00:00 2001 From: Mattia Barbon Date: Sat, 11 Jan 2003 20:55:27 +0000 Subject: [PATCH] Fix PCH problems with some versions of CodeWarrior. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18685 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/hashmap.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/wx/hashmap.h b/include/wx/hashmap.h index 57a51c3b9c..6142c84e84 100644 --- a/include/wx/hashmap.h +++ b/include/wx/hashmap.h @@ -332,7 +332,7 @@ protected: \ \ CopyHashTable( (_wxHashTable_NodeBase**)srcTable, srcBuckets, \ this, (_wxHashTable_NodeBase**)m_table, \ - (BucketFromNode)&GetBucketForNode,\ + (BucketFromNode)GetBucketForNode,\ (ProcessNode)&DummyProcessNode ); \ free(srcTable); \ } \ @@ -344,8 +344,8 @@ protected: \ CopyHashTable( (_wxHashTable_NodeBase**)ht.m_table, ht.m_tableBuckets,\ (_wxHashTableBase2*)this, \ (_wxHashTable_NodeBase**)m_table, \ - (BucketFromNode)&GetBucketForNode, \ - (ProcessNode)&CopyNode ); \ + (BucketFromNode)GetBucketForNode, \ + (ProcessNode)CopyNode ); \ } \ };