------- Comment #5 from pinskia at gcc dot gnu dot org  2008-09-04 02:27 -------
Confirmed, reduced (undefined, I think this code is always going to be
undefined);
class GenericClass;
struct AlsaDriver
{
  virtual int _read (unsigned nframes);
};
typedef void (GenericClass::*GenericMemFuncType) ();
GenericMemFuncType m_pFunction;
void AlsaDriver1 ()
{
  m_pFunction = reinterpret_cast < GenericMemFuncType > (&AlsaDriver::_read);
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-09-04 02:27:57
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=37354

Reply via email to