On Fri, Sep 6, 2019 at 3:50 AM jmh530 via Digitalmars-d-announce
<digitalmars-d-announce@puremagic.com> wrote:
>
> On Thursday, 5 September 2019 at 20:55:15 UTC, Manu wrote:
> > [snip]
> >
> > Interesting... you can see in the code, there are doco comments
> > everywhere, but the docs are empty O_o
> > Also the second line of the description linking to the C++ docs
> > is
> > missing too... where did all the docs go?
> >
>
> The point I was trying to make wrt basic_string was that the top
> of it looks like
>
> /**
>   * D language counterpart to C++ std::basic_string.
>   *
>   * C++ reference: $(LINK2
> https://en.cppreference.com/w/cpp/string/basic_string)
>   */
> extern(C++, class)
> extern(C++, (StringNamespace))
> struct basic_string(T, Traits = char_traits!T, Alloc =
> allocator!T)
>
> whereas the top of vector looks like
>
> extern(C++, class) struct vector(T, Alloc = allocator!T)
>
> It has no top-level comment. With no top-level comment, all the
> other documentation won't show up.

I'll give it a good do-over.

What's the story with string though; the second line (linking back to
the C++ reference) of the doco isn't there... O_o

Reply via email to