I would like to remove the space after decltype(
in the following SFINAE test:
template<typename C> static one test(typename std::remove_reference<decltype( &C::fromString)>::type);
Obviously, I don't want to lose spaces before ampersands in other cases like std::string &s
or whatever.
Can anyone tell me which option governs this space?