diff options
Diffstat (limited to 'include/clang/Sema/ObjCMethodList.h')
-rw-r--r-- | include/clang/Sema/ObjCMethodList.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/clang/Sema/ObjCMethodList.h b/include/clang/Sema/ObjCMethodList.h index 80ccd363d2725..d0af4d15fb9f3 100644 --- a/include/clang/Sema/ObjCMethodList.h +++ b/include/clang/Sema/ObjCMethodList.h @@ -21,13 +21,13 @@ namespace clang { class ObjCMethodDecl; -/// \brief a linked list of methods with the same selector name but different +/// a linked list of methods with the same selector name but different /// signatures. struct ObjCMethodList { // NOTE: If you add any members to this struct, make sure to serialize them. - /// \brief If there is more than one decl with this signature. + /// If there is more than one decl with this signature. llvm::PointerIntPair<ObjCMethodDecl *, 1> MethodAndHasMoreThanOneDecl; - /// \brief The next list object and 2 bits for extra info. + /// The next list object and 2 bits for extra info. llvm::PointerIntPair<ObjCMethodList *, 2> NextAndExtraBits; ObjCMethodList() { } |