cppast
cppast copied to clipboard
Default type of template type parameter is unexposed
- 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();