@@ -385,8 +385,10 @@ struct MRDOCS_DECL
385
385
386
386
bool operator ==(const Block& other) const noexcept
387
387
{
388
- if (kind != other.kind )
388
+ if (kind != other.kind )
389
+ {
389
390
return false ;
391
+ }
390
392
return std::equal (children.begin (), children.end (),
391
393
other.children .begin (), other.children .end (),
392
394
[](const auto & a, const auto & b)
@@ -410,6 +412,8 @@ struct MRDOCS_DECL
410
412
411
413
void append (List<Node>&& blocks);
412
414
415
+ void append (List<Text> const & otherChildren);
416
+
413
417
protected:
414
418
explicit
415
419
Block (
@@ -892,7 +896,7 @@ void traverse(
892
896
893
897
struct Overview
894
898
{
895
- Paragraph const * brief = nullptr ;
899
+ std::shared_ptr< Paragraph> brief = nullptr ;
896
900
std::vector<Block const *> blocks;
897
901
Returns const * returns = nullptr ;
898
902
std::vector<Param const *> params;
@@ -916,6 +920,8 @@ class Corpus;
916
920
class MRDOCS_DECL
917
921
Javadoc
918
922
{
923
+ doc::List<doc::Block> blocks_;
924
+
919
925
public:
920
926
/* * Constructor.
921
927
*/
@@ -1015,8 +1021,6 @@ class MRDOCS_DECL
1015
1021
1016
1022
private:
1017
1023
std::string emplace_back (std::unique_ptr<doc::Block>);
1018
-
1019
- doc::List<doc::Block> blocks_;
1020
1024
};
1021
1025
1022
1026
/* * Return the Javadoc as a @ref dom::Value.
0 commit comments