[clang-tools-extra] r247798 - [clang-tidy] Added a style guide link.
Alexander Kornienko via cfe-commits
cfe-commits at lists.llvm.org
Wed Sep 16 06:54:16 PDT 2015
Author: alexfh
Date: Wed Sep 16 08:54:16 2015
New Revision: 247798
URL: http://llvm.org/viewvc/llvm-project?rev=247798&view=rev
Log:
[clang-tidy] Added a style guide link.
Modified:
clang-tools-extra/trunk/docs/clang-tidy/checks/google-runtime-int.rst
Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/google-runtime-int.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/google-runtime-int.rst?rev=247798&r1=247797&r2=247798&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/google-runtime-int.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/google-runtime-int.rst Wed Sep 16 08:54:16 2015
@@ -5,4 +5,7 @@ google-runtime-int
Finds uses of ``short``, ``long`` and ``long long`` and suggest replacing them
with ``u?intXX(_t)?``.
+The corresponding style guide rule:
+https://google-styleguide.googlecode.com/svn/trunk/cppguide.html#Integer_Types.
+
Correspondig cpplint.py check: 'runtime/int'.
More information about the cfe-commits
mailing list