linux-packaging-mono/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/readability-avoid-const-params-in-decls.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

18 lines
485 B
ReStructuredText

.. title:: clang-tidy - readability-avoid-const-params-in-decls
readability-avoid-const-params-in-decls
=======================================
Checks whether a function declaration has parameters that are top level
``const``.
``const`` values in declarations do not affect the signature of a function, so
they should not be put there.
Examples:
.. code-block:: c++
void f(const string); // Bad: const is top level.
void f(const string&); // Good: const is not top level.