detail identifiers in public APIs could say __implementation_defined__
Open
- Dominant language
- Python
- Stars
- 20
- Forks
- 25
- PR merge metrics
- No merged PRs in 30d
Description
For example here
```
template
detail::pct_encoded_bnf
pct_encoded_bnf(
CharSet const& cs,
pct_encoded_str& t) noexcept;
```
Currently the workaround is to write
```
template
#ifdef BOOST_URL_DOCS
__implementation_defined__
#else
detail::pct_encoded_bnf
#endif
pct_encoded_bnf(
CharSet const& cs,
pct_encoded_str& t) noexcept;
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.