www.digitalmars.com Home | Search | C & C++ | D | DMDScript | News Groups | index | prev | next
Archives

D Programming
D
D.gnu
digitalmars.D
digitalmars.D.bugs
digitalmars.D.dtl
digitalmars.D.dwt
digitalmars.D.announce
digitalmars.D.learn
digitalmars.D.debugger

C/C++ Programming
c++
c++.announce
c++.atl
c++.beta
c++.chat
c++.command-line
c++.dos
c++.dos.16-bits
c++.dos.32-bits
c++.idde
c++.mfc
c++.rtl
c++.stl
c++.stl.hp
c++.stl.port
c++.stl.sgi
c++.stlsoft
c++.windows
c++.windows.16-bits
c++.windows.32-bits
c++.wxwindows

digitalmars.empire
digitalmars.DMDScript

c++ - [bug] Partial specialization & member function pointers

↑ ↓ ← Daniel James <daniel calamity.org.uk> writes:
I'm getting 'Internal error: template 1869' when I try to compile this:

   template <typename T>
   struct is_mem_fun_pointer { };

   template <class R, class T >
   struct is_mem_fun_pointer<R (T::*)() > { };

   typedef is_mem_fun_pointer<int> test;

I think this might be a regression, as it's causing boost::is_pointer to 
fail, and IIRC it used to work.

Daniel
May 30 2005
→ "Walter" <newshound digitalmars.com> writes:
Thanks, Daniel, I'll check it out.
May 30 2005
→ "Walter" <newshound digitalmars.com> writes:
The new beta fixes this and some other type_traits issues.

http://ftp.digitalmars.com/Digital_Mars_C++/Patch/beta.zip

http://www.digitalmars.com/download/freecompiler.html
May 30 2005