[PATCH] Fix doxygen warnings
Ariel Bernal
ariel.j.bernal at intel.com
Tue Jul 23 20:45:28 PDT 2013
Hi revane, Sarcasm,
Doxygen does not recognize <blockquote> </blockquote> html tags. Added support for <blockquote> was introduced in version 1.8.0.
This patch replaced <blockquote> by \par for compatibility with previous versions of doxygen.
http://llvm-reviews.chandlerc.com/D1207
Files:
cpp11-migrate/Core/Reformatting.h
Index: cpp11-migrate/Core/Reformatting.h
===================================================================
--- cpp11-migrate/Core/Reformatting.h
+++ cpp11-migrate/Core/Reformatting.h
@@ -44,10 +44,11 @@
/// 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);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D1207.1.patch
Type: text/x-patch
Size: 934 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20130723/de30ab1b/attachment.bin>
More information about the cfe-commits
mailing list