Release D 2.088.0
jmh530
john.michael.hall at gmail.com
Fri Sep 6 10:46:32 UTC 2019
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.
More information about the Digitalmars-d-announce
mailing list