
2 Jul
2005
2 Jul
'05
7:14 p.m.
Joel de Guzman wrote:
struct some_baz { int impl(foo, int x) { return x + 1; } int impl(bar, char const* s) { return std::strlen(s); } };
With Jonathan's library this would be: struct some_baz { int foo(int x) { return x + 1; } int bar(char const* s) { return std::strlen(s); } }; A major advantage in my opinion. I think it also supports overloads. Daniel