llvm-project/clang/lib/Tooling/Refactoring
Adrian Prantl 9fc8faf9e6 Remove \brief commands from doxygen comments.
This is similar to the LLVM change https://reviews.llvm.org/D46290.

We've been running doxygen with the autobrief option for a couple of
years now. This makes the \brief markers into our comments
redundant. Since they are a visual distraction and we don't want to
encourage more \brief markers in new code either, this patch removes
them all.

Patch produced by

for i in $(git grep -l '\@brief'); do perl -pi -e 's/\@brief //g' $i & done
for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done

Differential Revision: https://reviews.llvm.org/D46320

llvm-svn: 331834
2018-05-09 01:00:01 +00:00
..
Extract Remove \brief commands from doxygen comments. 2018-05-09 01:00:01 +00:00
Rename Remove \brief commands from doxygen comments. 2018-05-09 01:00:01 +00:00
ASTSelection.cpp [refactor][selection] canonicalize decl ref callee to the call expr 2017-11-14 23:10:50 +00:00
ASTSelectionRequirements.cpp [refactor] Initial outline of implementation of "extract function" refactoring 2017-10-24 17:18:45 +00:00
AtomicChange.cpp Remove \brief commands from doxygen comments. 2018-05-09 01:00:01 +00:00
CMakeLists.txt [refactor][extract] insert semicolons into extracted/inserted code 2017-11-03 18:11:22 +00:00
RefactoringActions.cpp [clang-refactor] Introduce a new rename rule for qualified symbols 2017-11-08 08:56:56 +00:00