In this branch:
https://github.com/vinniefalco/url/tree/docca
Some very weird things are happening. For example here is the member declaration for userinfo():
https://github.com/vinniefalco/url/blob/4a8df7369af8946a56ee8ff88b599b4cc5b3c544/include/boost/url/url_view_base.hpp#L633
And yet it is being rendered as a static member:

And a regular member:

Something similar is happening to string_view_base. These operators are declared as friends (free functions):
https://github.com/vinniefalco/url/blob/4a8df7369af8946a56ee8ff88b599b4cc5b3c544/include/boost/url/grammar/string_view_base.hpp#L783
But they are showing up as static members, protected DATA members, and regular members at the same time (lol)!



Something ain't right :)
In this branch:
https://github.com/vinniefalco/url/tree/docca
Some very weird things are happening. For example here is the member declaration for
userinfo():https://github.com/vinniefalco/url/blob/4a8df7369af8946a56ee8ff88b599b4cc5b3c544/include/boost/url/url_view_base.hpp#L633
And yet it is being rendered as a static member:

And a regular member:

Something similar is happening to
string_view_base. These operators are declared as friends (free functions):https://github.com/vinniefalco/url/blob/4a8df7369af8946a56ee8ff88b599b4cc5b3c544/include/boost/url/grammar/string_view_base.hpp#L783
But they are showing up as static members, protected DATA members, and regular members at the same time (lol)!

Something ain't right :)