diff options
Diffstat (limited to 'include/clang/AST/MangleNumberingContext.h')
-rw-r--r-- | include/clang/AST/MangleNumberingContext.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/clang/AST/MangleNumberingContext.h b/include/clang/AST/MangleNumberingContext.h index 869221dbf31b6..ff2148e3516db 100644 --- a/include/clang/AST/MangleNumberingContext.h +++ b/include/clang/AST/MangleNumberingContext.h @@ -27,29 +27,29 @@ class TagDecl; class Type; class VarDecl; -/// \brief Keeps track of the mangled names of lambda expressions and block +/// Keeps track of the mangled names of lambda expressions and block /// literals within a particular context. class MangleNumberingContext { public: virtual ~MangleNumberingContext() {} - /// \brief Retrieve the mangling number of a new lambda expression with the + /// Retrieve the mangling number of a new lambda expression with the /// given call operator within this context. virtual unsigned getManglingNumber(const CXXMethodDecl *CallOperator) = 0; - /// \brief Retrieve the mangling number of a new block literal within this + /// Retrieve the mangling number of a new block literal within this /// context. virtual unsigned getManglingNumber(const BlockDecl *BD) = 0; /// Static locals are numbered by source order. virtual unsigned getStaticLocalNumber(const VarDecl *VD) = 0; - /// \brief Retrieve the mangling number of a static local variable within + /// Retrieve the mangling number of a static local variable within /// this context. virtual unsigned getManglingNumber(const VarDecl *VD, unsigned MSLocalManglingNumber) = 0; - /// \brief Retrieve the mangling number of a static local variable within + /// Retrieve the mangling number of a static local variable within /// this context. virtual unsigned getManglingNumber(const TagDecl *TD, unsigned MSLocalManglingNumber) = 0; |