From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19872 invoked by alias); 5 Apr 2006 14:55:50 -0000 Received: (qmail 19832 invoked by uid 22791); 5 Apr 2006 14:55:49 -0000 X-Spam-Check-By: sourceware.org Received: from exprod6og7.obsmtp.com (HELO exprod6og7.obsmtp.com) (64.18.1.127) by sourceware.org (qpsmtpd/0.31) with SMTP; Wed, 05 Apr 2006 14:55:48 +0000 Received: from source ([192.150.20.142]) by exprod6ob7.obsmtp.com ([64.18.5.12]) with SMTP; Wed, 05 Apr 2006 07:55:39 PDT Received: from inner-relay-3.eur.adobe.com (inner-relay-3b [10.128.4.236]) by outbound-smtp-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id k35Etk46019963; Wed, 5 Apr 2006 07:55:47 -0700 (PDT) Received: from fe1.corp.adobe.com (fe1.corp.adobe.com [10.8.192.70]) by inner-relay-3.eur.adobe.com (8.12.10/8.12.9) with ESMTP id k35Etars014366; Wed, 5 Apr 2006 07:55:36 -0700 (PDT) Received: from namail3.corp.adobe.com ([10.8.192.66]) by fe1.corp.adobe.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 5 Apr 2006 07:55:35 -0700 Received: from 10.32.16.88 ([10.32.16.88]) by namail3.corp.adobe.com ([10.8.192.66]) via Exchange Front-End Server namailhost.corp.adobe.com ([10.8.192.72]) with Microsoft Exchange Server HTTP-DAV ; Wed, 5 Apr 2006 14:55:34 +0000 User-Agent: Microsoft-Entourage/11.2.3.060209 Date: Wed, 05 Apr 2006 14:55:00 -0000 Subject: Re: Template and member function pointers compile question From: John Love-Jensen To: Tristan Bonsall , MSX to GCC Message-ID: In-Reply-To: <4433D819.4060202@carallon.com> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-IsSubscribed: yes Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org X-SW-Source: 2006-04/txt/msg00023.txt.bz2 Hi Tristan, Change this... pFunc = &TestClass::calculate; ...to this... pFunc = &TestClass::template calculate; And do the same in the other similar areas. Does that fix the issue? --Eljay