Robert Allan Schwartz wrote:
The attached document was submitted for publication to C/C++ Users Journal
today, but I thought it might be worth submitting to Boost as well.

Perhaps my spelling class template could be folded into type_traits?

[code snipped]


Looks interesting, but I'm not sure if it's such a huge advantage over:

template <typename T>
void foo(T)
{
    cout << "T is " << typeid(T).name() << endl;
}

The resulting string of your method is more portable of course, but is that the only reason?

Regards,
Dirk Gerrits


_______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to