
On Jul 10, 2011, at 3:08 PM, Mathias Gaunard wrote:
On 07/10/2011 08:17 PM, Gordon Woodhull wrote:
It would be annoying to users to have to register every type in their graph/state machine, so I guess I'm wondering if demangle(typeid(T).typename()) is impossible on a lot of compilers.
Why not print things at compile time through a warning?
Interesting. I could wrap the types in something easy to find and then not worry about compiler differences. Related question, then: why has mpl::print<> never worked for me on gcc? template<typename E> void operator()(found_edge<E>) { typename mpl::print<E>::type foo; // nothing happens Is there an alternative? I just end up hacking my own errors when I have to debug stuff, but that won't work here. Thanks, Gordon