This is an archive of the discontinued LLVM Phabricator instance.

Remove \brief commands from doxygen comments.
ClosedPublic

Authored by gribozavr on Aug 22 2019, 2:27 AM.

Details

Summary

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

[This is analogous to LLVM r331272 and CFE r331834]

Diff Detail

Repository
rL LLVM

Event Timeline

gribozavr created this revision.Aug 22 2019, 2:27 AM
Herald added a project: Restricted Project. · View Herald TranscriptAug 22 2019, 2:27 AM
gribozavr updated this revision to Diff 216570.Aug 22 2019, 2:28 AM

Fixed a typo

ilya-biryukov accepted this revision.Aug 22 2019, 2:30 AM

LGTM. Kill it with fire

This revision is now accepted and ready to land.Aug 22 2019, 2:30 AM
This revision was automatically updated to reflect the committed changes.
Herald added a project: Restricted Project. · View Herald TranscriptAug 22 2019, 4:32 AM