Is it supposed to be like this?
/// Generates docs for the constructor
struct A
{
///
this(int i) { }
}
/// Does not generate docs for the constructor
Struct B
{
///
mixin("this(int i) { }");
}
--
Bye,
Gor Gyolchanyan.
Is it supposed to be like this?
/// Generates docs for the constructor
struct A
{
///
this(int i) { }
}
/// Does not generate docs for the constructor
Struct B
{
///
mixin("this(int i) { }");
}
--
Bye,
Gor Gyolchanyan.