Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 378 Bytes

opt-show-all-callexpr-template-parameters.md

File metadata and controls

28 lines (19 loc) · 378 Bytes

show-all-callexpr-template-parameters {#show_all_callexpr_template_parameters}

Show all template parameters of a CallExpr.

Default: Off

Examples:

#include <utility>

auto Fun()
{
    return std::make_pair(5, 7.5);
}

transforms into this:

#include <utility>

std::pair<int, double> Fun()
{
  return std::make_pair<int, double>(5, 7.5);
}