Commit fbdd9d76 by Jeff Law

From egcs release branch

From-SVN: r16867
parent f45ebe47
// Build don't link:
template <class S, class T>
class mem_fun1_t {
public:
mem_fun1_t(S (T::*pf)(double)) {}
};
template <class T>
class mem_fun1_t<void, T> {
public:
mem_fun1_t(void (T::*pf)(double)) {}
};
struct Operation {
double eval(double) {}
};
int main() {
mem_fun1_t<double, Operation> m(&Operation::eval);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment