summaryrefslogtreecommitdiff
path: root/clang/lib/AST/CommentSema.cpp
AgeCommit message (Expand)Author
2025-11-02[ADT] Prepare to deprecate variadic `StringSwitch::Cases`. NFC. (#166020)Jakub Kuderski
2025-10-25[ADT] Deprecate StringSwitch Cases with 3+ args. NFC. (#165119)Jakub Kuderski
2025-08-09[clang] Improve nested name specifier AST representation (#147835)Matheus Izvekov
2025-08-08[clangd] introduce doxygen parser (#150790)tcottin
2025-07-09[clang][diagnostics] Refactor "warn_doc_api_container_decl_mismatch" to use e...Ayokunle Amodu
2025-07-08[clang][diagnostics] Refactor "warn_doc_container_decl_mismatch" to use enum_...Ayokunle Amodu
2025-06-23[NFC][Clang][AST] Drop `llvm::` in front of `ArrayRef`/`MutableArrayRef` (#14...Rahul Joshi
2025-05-22[Clang] add typo correction for unknown attribute names (#140629)Oleksandr T.
2024-12-06[AST] Include clang/Basic/DiagnosticComment.h instead of clang/AST/CommentDia...Kazu Hirata
2024-11-17[AST] Remove unused includes (NFC) (#116549)Kazu Hirata
2023-11-06[clang][NFC] Refactor `ParamCommandComment::PassDirection`Vlad Serebrennikov
2023-11-06[clang][NFC] Refactor `InlineCommandComment::RenderKind`Vlad Serebrennikov
2023-08-11[C23] Rename C2x -> C23; NFCAaron Ballman
2023-01-09Move from llvm::makeArrayRef to ArrayRef deduction guides - clang/ partserge-sans-paille
2022-05-13Comment parsing: Allow inline commands to have 0 or more than 1 argumentAaron Puchert
2021-11-12Comment AST: Recognize function-like objects via return type (NFC)Aaron Puchert
2021-11-12Comment AST: Find out if function is variadic in DeclInfo::fillAaron Puchert
2021-11-09Comment AST: Declare function pointer variables as functionsAaron Puchert
2021-10-17[clang] Use llvm::erase_if (NFC)Kazu Hirata
2020-04-06[AST] Remove DeclCXX.h dep on ASTContext.hReid Kleckner
2020-02-20[clang][doxygen] Fix false -Wdocumentation warning for tag typedefsJan Korous
2019-12-21[Wdocumentation] Implement \anchorMark de Wever
2019-12-10[Wdocumentation] Use C2x/C++14 deprecated attributeMark de Wever
2019-12-10[Wdocumentation] Properly place deprecated attributeMark de Wever
2019-12-10[Wdocumentation] Use the command marker.Mark de Wever
2019-09-02[Wdocumentation] fixes an assertion failure with typedefed function and block...Dmitri Gribenko
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth
2018-08-09Port getLocEnd -> getEndLocStephen Kelly
2018-05-09Remove \brief commands from doxygen comments.Adrian Prantl
2017-10-06-Wdocumentation should allow '...' params in variadic function type aliasesAlex Lorenz
2017-04-26-Wdocumentation should not check the @returns command for Objective-CAlex Lorenz
2017-04-21[PR32667] -Wdocumentation should allow @param/@returns for fields/variablesAlex Lorenz
2016-08-28AST: improve layout of SimpleTypoCorrectorSaleem Abdulrasool
2016-02-10Fix some Clang-tidy readability-redundant-control-flow warnings; other minor ...Eugene Zelenko
2014-05-12[C++11] Use 'nullptr'. AST edition.Craig Topper
2014-04-30Comment parsing: remove HTML attribute validationDmitri Gribenko
2014-04-22Comment parsing: in the generated XML file, mark HTML that is safe to passDmitri Gribenko
2014-03-19Comment parsing: recognize \param ... on function templates with variadicDmitri Gribenko
2014-01-27Comment parsing: don't crash while parsing \deprecated in a standalone commentDmitri Gribenko
2014-01-25Rename getResultType() on function and method declarations to getReturnType()Alp Toker
2013-12-17Fix strange indentation and remove trailing whitespace on empty linesDmitri Gribenko
2013-11-10Avoid double StringMap lookups. No functionality change.Benjamin Kramer
2013-11-10CommentSema: Factor code better. No functionality change.Benjamin Kramer
2013-08-23Use pop_back_val() instead of both back() and pop_back().Robert Wilhelm
2013-06-24Comment parsing: allow "\param ..." to describe variadic argumentsDmitri Gribenko
2013-06-24Move comment on Sema::isFunctionPointerVarDecl() to the header fileDmitri Gribenko
2013-06-22Comment parsing: followup to r184610: allow multiple \returnsDmitri Gribenko
2013-06-21[document parsing]: Allow multiple adjacent \return and the likeFariborz Jahanian
2013-06-19documentation parsing: patch to make @class work forFariborz Jahanian
2013-06-19Revert r184249, "doc. parsing: Allow parameter name "..." for variadic functi...NAKAMURA Takumi