adobe / hyde

A front-end to Jekyll that parses C++ sources to produce and enforce out-of-line documentation
http://opensource.adobe.com/hyde/
MIT License
323 stars 41 forks source link

Better type alias template definition output #2

Open fosterbrereton opened 5 years ago

fosterbrereton commented 5 years ago

For example, the docs do a poor job with foo_alias, below:

template <typename T, typename U>
struct foo {};

template <typename U>
using foo_alias = foo<bool, U>;