Browse Source

Fixed parsing of block command comment arguments under non-Windows platforms.

pull/621/merge
Joao Matos 10 years ago
parent
commit
d4e34e44bd
  1. 2
      src/CppParser/AST.cpp
  2. 1
      src/CppParser/AST.h

2
src/CppParser/AST.cpp

@ -844,6 +844,8 @@ BlockContentComment::BlockContentComment(CommentKind Kind) : Comment(Kind) {}
BlockCommandComment::Argument::Argument() {} BlockCommandComment::Argument::Argument() {}
BlockCommandComment::Argument::Argument(const Argument& rhs) : Text(rhs.Text) {}
DEF_STRING(BlockCommandComment::Argument, Text) DEF_STRING(BlockCommandComment::Argument, Text)
BlockCommandComment::BlockCommandComment() : BlockContentComment(CommentKind::BlockCommandComment), CommandId(0) {} BlockCommandComment::BlockCommandComment() : BlockContentComment(CommentKind::BlockCommandComment), CommandId(0) {}

1
src/CppParser/AST.h

@ -957,6 +957,7 @@ public:
{ {
public: public:
Argument(); Argument();
Argument(const Argument&);
STRING(Text) STRING(Text)
}; };
BlockCommandComment(); BlockCommandComment();

Loading…
Cancel
Save