boostorg / boostorg/docca

Type aliases are missing description and more

Open
#31 3 comments 0 reactions 0 assignees View on GitHub
Dominant language
Python
Stars
20
Forks
25
PR merge metrics
No merged PRs in 30d

Description

Type aliases are not showing the description and parameters:
```
/** Determine if `T` meets the requirements of @b CompletionHandler.

This trait checks whether a type meets the requirements for a completion
handler, and is also callable with the specified signature.
Metafunctions are used to perform compile time checking of template
types. This type will be `std::true_type` if `T` meets the requirements,
else the type will be `std::false_type`.

@par Example

Use with `static_assert`:

@code
struct handler
{
void operator()(error_code&);
};

static_assert(is_completion_handler::value,
"Not a completion handler");
@endcode
*/
template
using is_completion_handler = std::integral_constant;
```

Is only showing the brief and synopsis

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.