Allow exclude of template parameters in generation

This commit is contained in:
Jonathan Müller 2018-01-09 20:38:27 +01:00
commit 6c27481fa7
2 changed files with 14 additions and 2 deletions

View file

@ -481,6 +481,9 @@ namespace
const cpp_template_instantiation_type& type)
{
output << type.primary_template();
if (output.was_reference_excluded())
return;
if (type.arguments_exposed())
detail::write_template_arguments(output, type.arguments());
else