diff options
author | Ariel J. Bernal <ariel.j.bernal@intel.com> | 2013-07-24 19:14:57 +0000 |
---|---|---|
committer | Ariel J. Bernal <ariel.j.bernal@intel.com> | 2013-07-24 19:14:57 +0000 |
commit | a9df759af6170dff3f1c1a48d51620a03bed8459 (patch) | |
tree | 231c4f7e6303ff62a77a3cfe989ede35705d81e6 /clang-tools-extra/cpp11-migrate | |
parent | e8064c9a3c0e4aea68e09508fe98a6ed4042956c (diff) | |
download | bcm5719-llvm-a9df759af6170dff3f1c1a48d51620a03bed8459.tar.gz bcm5719-llvm-a9df759af6170dff3f1c1a48d51620a03bed8459.zip |
Fix doxygen warnings
Doxygen doesn't recognize <blockquote> html tags. Added support for <blockquote>
and Markdown was introduce with doxygen 1.8.0. This patch replaces blockquote
with \par for compatibility with previous versions.
llvm-svn: 187067
Diffstat (limited to 'clang-tools-extra/cpp11-migrate')
-rw-r--r-- | clang-tools-extra/cpp11-migrate/Core/Reformatting.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/clang-tools-extra/cpp11-migrate/Core/Reformatting.h b/clang-tools-extra/cpp11-migrate/Core/Reformatting.h index ac9fef381c6..e63e51d2160 100644 --- a/clang-tools-extra/cpp11-migrate/Core/Reformatting.h +++ b/clang-tools-extra/cpp11-migrate/Core/Reformatting.h @@ -44,10 +44,11 @@ public: /// Since this routine use \c clang::format::reformat() the rules that applies /// on the ranges are identical: /// - /// <blockquote> Each range is extended on either end to its next bigger logic + /// \par + /// Each range is extended on either end to its next bigger logic /// unit, i.e. everything that might influence its formatting or might be /// influenced by its formatting. - /// -- \c clang::format::reformat()</blockquote> + /// -- \c clang::format::reformat() clang::tooling::Replacements reformatSingleFile(llvm::StringRef FileName, const ChangedRanges &Changes, clang::SourceManager &SM); |