[clang-tools-extra] r260912 - fix an indent issue in the doc which causes sphinx to fail with some versions

Sylvestre Ledru via cfe-commits cfe-commits at lists.llvm.org
Mon Feb 15 12:38:54 PST 2016


Author: sylvestre
Date: Mon Feb 15 14:38:54 2016
New Revision: 260912

URL: http://llvm.org/viewvc/llvm-project?rev=260912&view=rev
Log:
fix an indent issue in the doc which causes sphinx to fail with some versions

Modified:
    clang-tools-extra/trunk/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst

Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst?rev=260912&r1=260911&r2=260912&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst Mon Feb 15 14:38:54 2016
@@ -37,7 +37,7 @@ The resulting expression ``e`` is modifi
      opposite condition.
   4. Implicit conversions of pointers, including pointers to members, to
      ``bool`` are replaced with explicit comparisons to ``nullptr`` in C++11
-      or ``NULL`` in C++98/03.
+     or ``NULL`` in C++98/03.
   5. Implicit casts to ``bool`` are replaced with explicit casts to ``bool``.
   6. Object expressions with ``explicit operator bool`` conversion operators
      are replaced with explicit casts to ``bool``.




More information about the cfe-commits mailing list