Displaying 1 result from an estimated 1 matches for "pmarqui".
Did you mean:
pmarquis
2003 Apr 29
4
Bug in g++ 2.95.4 (Pointer to member functions)
Hi,
I think I have discovered a bug in FreeBSD 4.8-STABLE's system C++ compiler:
% gcc -v
% Using builtin specs.
% gcc version 2.95.4 20020320 [FreeBSD]
Here is a stripped down example that can be used to reproduce the bug:
// ----------- begin bug.cpp -----------
#include <iostream>
class Class {
public:
void M1 (void) { cout << "M1" << endl; };
void M2