[clang-tools-extra] r325223 - [clang-tidy] Minor documentation fix
Gabor Horvath via cfe-commits
cfe-commits at lists.llvm.org
Thu Feb 15 01:19:24 PST 2018
Author: xazax
Date: Thu Feb 15 01:19:23 2018
New Revision: 325223
URL: http://llvm.org/viewvc/llvm-project?rev=325223&view=rev
Log:
[clang-tidy] Minor documentation fix
Modified:
clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-throw-keyword-missing.rst
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-throw-keyword-missing.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-throw-keyword-missing.rst?rev=325223&r1=325222&r2=325223&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-throw-keyword-missing.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/bugprone-throw-keyword-missing.rst Thu Feb 15 01:19:23 2018
@@ -10,6 +10,7 @@ object's type derives from (or is the sa
Example:
.. code-block:: c++
+
void f(int i) {
if (i < 0) {
// Exception is created but is not thrown.
More information about the cfe-commits
mailing list