cppast icon indicating copy to clipboard operation
cppast copied to clipboard

Default type of template type parameter is unexposed

Open foonathan opened this issue 8 years ago • 0 comments

  • cppast version: latest one
  • parser: libclang_parser
  • clang version: 3.9.1+

The default type of a template type parameter is always unexposed, as there is no way to retrieve them from libclang.

Input:

template <typename T = int>
void foo();

foonathan avatar Apr 18 '17 13:04 foonathan