From 4e89611168993a2c4eac7f1f0f50c700c348a9e5 Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 15 Feb 2016 20:38:54 +0000 Subject: [PATCH] fix an indent issue in the doc which causes sphinx to fail with some versions llvm-svn: 260912 --- .../docs/clang-tidy/checks/readability-simplify-boolean-expr.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang-tools-extra/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst b/clang-tools-extra/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst index c3c1119..7e1f655 100644 --- a/clang-tools-extra/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst +++ b/clang-tools-extra/docs/clang-tidy/checks/readability-simplify-boolean-expr.rst @@ -37,7 +37,7 @@ The resulting expression ``e`` is modified as follows: 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``. -- 2.7.4