Before this PR, modernize-use-using would transform the typedef in
template <int A> struct InjectedClassName { typedef InjectedClassName b; };
into using b = InjectedClassName<A>; and
template <int> struct InjectedClassNameWithUnnamedArgument { typedef InjectedClassNameWithUnnamedArgument b; };
into using b = InjectedClassNameWithUnnamedArgument<>;.
The first fixit is surprising because its different than the code
before, but the second fixit doesn't even compile.
This PR adds an option to the TypePrinter to print InjectedClassNameType without
template parameters (i.e. as written).
When a template arguments are... -> When a template argument is unnamed, printing it results in invalid C++ code.