linux-packaging-mono/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/readability-static-accessed-through-instance.rst
Xamarin Public Jenkins (auto-signing) 468663ddbb Imported Upstream version 6.10.0.49
Former-commit-id: 1d6753294b2993e1fbf92de9366bb9544db4189b
2020-01-16 16:38:04 +00:00

32 lines
530 B
ReStructuredText

.. title:: clang-tidy - readability-static-accessed-through-instance
readability-static-accessed-through-instance
============================================
Checks for member expressions that access static members through instances, and
replaces them with uses of the appropriate qualified-id.
Example:
The following code:
.. code-block:: c++
struct C {
static void foo();
static int x;
};
C *c1 = new C();
c1->foo();
c1->x;
is changed to:
.. code-block:: c++
C *c1 = new C();
C::foo();
C::x;