diff options
author | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-31 23:20:06 +0000 |
---|---|---|
committer | Dmitri Gribenko <gribozavr@gmail.com> | 2013-01-31 23:20:06 +0000 |
commit | 17d15f3c3dad45f6df8034c9ea3e3c8ff466076c (patch) | |
tree | 8a9115ea0b12bb41b72f44111f884fcfe10e1083 | |
parent | 5e31474b9c8348e8d0404264ae6a8775e34df6ac (diff) |
Escape backslash in the comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174112 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/AST/CommentCommandTraits.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/AST/CommentCommandTraits.h b/include/clang/AST/CommentCommandTraits.h index 44876a534d..1ec7929af5 100644 --- a/include/clang/AST/CommentCommandTraits.h +++ b/include/clang/AST/CommentCommandTraits.h @@ -68,8 +68,8 @@ struct CommandInfo { /// True if this command is \\deprecated or an alias. unsigned IsDeprecatedCommand : 1; - - /// \brief True if this is a \headerfile-like documentation + + /// \brief True if this is a \\headerfile-like command. unsigned IsHeaderfileCommand : 1; /// True if we don't want to warn about this command being passed an empty |