17 lines · plain
1.. title:: clang-tidy - fuchsia-default-arguments-declarations2 3fuchsia-default-arguments-declarations4======================================5 6Warns if a function or method is declared with default parameters.7 8For example, the declaration:9 10.. code-block:: c++11 12 int foo(int value = 5) { return value; }13 14will cause a warning.15 16See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en17