Browse Source

Fixed full comment parsing in AST converter.

pull/224/head
triton 11 years ago
parent
commit
67a3ec1051
  1. 6
      src/Core/Parser/ASTConverter.cs

6
src/Core/Parser/ASTConverter.cs

@ -640,10 +640,12 @@ namespace CppSharp @@ -640,10 +640,12 @@ namespace CppSharp
Kind = ConvertRawCommentKind(rawComment.RawCommentKind),
BriefText = rawComment.BriefText,
Text = rawComment.Text,
FullComment = commentConverter.Visit(rawComment.FullComment)
as AST.FullComment
};
if (rawComment.FullComment != null)
_rawComment.FullComment = commentConverter.Visit(rawComment.FullComment)
as AST.FullComment;
return _rawComment;
}

Loading…
Cancel
Save