[clang-tools-extra] r187067 - Fix doxygen warnings
Ariel J. Bernal
ariel.j.bernal at intel.com
Wed Jul 24 12:14:58 PDT 2013
Author: ajbernal
Date: Wed Jul 24 14:14:57 2013
New Revision: 187067
URL: http://llvm.org/viewvc/llvm-project?rev=187067&view=rev
Log:
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.
Modified:
clang-tools-extra/trunk/cpp11-migrate/Core/Reformatting.h
Modified: clang-tools-extra/trunk/cpp11-migrate/Core/Reformatting.h
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/cpp11-migrate/Core/Reformatting.h?rev=187067&r1=187066&r2=187067&view=diff
==============================================================================
--- clang-tools-extra/trunk/cpp11-migrate/Core/Reformatting.h (original)
+++ clang-tools-extra/trunk/cpp11-migrate/Core/Reformatting.h Wed Jul 24 14:14:57 2013
@@ -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);
More information about the cfe-commits
mailing list