how can i hide certain parts of a function signature from doxygen?

42 views Asked by At

I have some C++ code like:

template <class T>
auto frobozzle(T t) -> typename detail::ugly_metafunction<T>::type;

I would like it to appear in my (Doxygen-generated) documentation like this:

template <class T>
auto frobozzle(T t) -> unspecified;

... but ideally also syntax highlighted. I can't figure how to substitute the return type with an italicized unspecified. Is it possible?

0

There are 0 answers