[clang-tools-extra] r310559 - [clang-tidy] Minor documentation improvement

Gabor Horvath via cfe-commits cfe-commits at lists.llvm.org
Thu Aug 10 02:13:26 PDT 2017


Author: xazax
Date: Thu Aug 10 02:13:26 2017
New Revision: 310559

URL: http://llvm.org/viewvc/llvm-project?rev=310559&view=rev
Log:
[clang-tidy] Minor documentation improvement

Patch by: Lilla Barancsuk

Modified:
    clang-tools-extra/trunk/docs/clang-tidy/checks/readability-static-accessed-through-instance.rst
    clang-tools-extra/trunk/test/clang-tidy/readability-static-accessed-through-instance.cpp

Modified: clang-tools-extra/trunk/docs/clang-tidy/checks/readability-static-accessed-through-instance.rst
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/docs/clang-tidy/checks/readability-static-accessed-through-instance.rst?rev=310559&r1=310558&r2=310559&view=diff
==============================================================================
--- clang-tools-extra/trunk/docs/clang-tidy/checks/readability-static-accessed-through-instance.rst (original)
+++ clang-tools-extra/trunk/docs/clang-tidy/checks/readability-static-accessed-through-instance.rst Thu Aug 10 02:13:26 2017
@@ -25,6 +25,7 @@ is changed to:
 
 .. code-block:: c++
 
+  C *c1 = new C();
   C::foo();
   C::x;
 

Modified: clang-tools-extra/trunk/test/clang-tidy/readability-static-accessed-through-instance.cpp
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/test/clang-tidy/readability-static-accessed-through-instance.cpp?rev=310559&r1=310558&r2=310559&view=diff
==============================================================================
--- clang-tools-extra/trunk/test/clang-tidy/readability-static-accessed-through-instance.cpp (original)
+++ clang-tools-extra/trunk/test/clang-tidy/readability-static-accessed-through-instance.cpp Thu Aug 10 02:13:26 2017
@@ -116,7 +116,7 @@ using E = D;
 
 template <typename T> void f(T t, C c) {
   t.x; // OK, t is a template parameter.
-  c.x; // 1
+  c.x;
   // CHECK-MESSAGES: :[[@LINE-1]]:3: warning: static member
   // CHECK-FIXES: {{^}}  C::x; // 1{{$}}
 }




More information about the cfe-commits mailing list