diff options
author | Jordan Rose <jordan_rose@apple.com> | 2013-04-03 01:39:23 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2013-04-03 01:39:23 +0000 |
commit | a0e9d39b55f5282dcf508b8174922fb642bd7f1d (patch) | |
tree | 479556f21293d71f23cc54fb31c6917984a15ab3 /clang/lib/Sema/SemaDecl.cpp | |
parent | bc74eb1c90552f91fcd82585eff962cf0b3cf7e8 (diff) | |
download | bcm5719-llvm-a0e9d39b55f5282dcf508b8174922fb642bd7f1d.tar.gz bcm5719-llvm-a0e9d39b55f5282dcf508b8174922fb642bd7f1d.zip |
Escape more @ signs in Doxygen comments.
Doxygen treats "@command" the same as "\command" in a doc comment, so
whenever we talk about Objective-C things like "@interface" we have to
make sure to escape them.
Let's try to keep Clang -Wdocumentation-clean!
llvm-svn: 178603
Diffstat (limited to 'clang/lib/Sema/SemaDecl.cpp')
-rw-r--r-- | clang/lib/Sema/SemaDecl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/Sema/SemaDecl.cpp b/clang/lib/Sema/SemaDecl.cpp index beae217e019..16887da457d 100644 --- a/clang/lib/Sema/SemaDecl.cpp +++ b/clang/lib/Sema/SemaDecl.cpp @@ -10807,8 +10807,8 @@ Decl *Sema::ActOnIvar(Scope *S, } /// ActOnLastBitfield - This routine handles synthesized bitfields rules for -/// class and class extensions. For every class @interface and class -/// extension @interface, if the last ivar is a bitfield of any type, +/// class and class extensions. For every class \@interface and class +/// extension \@interface, if the last ivar is a bitfield of any type, /// then add an implicit `char :0` ivar to the end of that interface. void Sema::ActOnLastBitfield(SourceLocation DeclLoc, SmallVectorImpl<Decl *> &AllIvarDecls) { |