[AMDGPU][True16][CodeGen] true16 codegen pattern for f16 canonicalize (#122000)
[llvm-project.git] / clang-tools-extra / docs / clang-tidy / checks / fuchsia / default-arguments-calls.rst
blobe2b91c2be163ae403fc1a2ce4b66fca085a18e1f
1 .. title:: clang-tidy - fuchsia-default-arguments-calls
3 fuchsia-default-arguments-calls
4 ===============================
6 Warns if a function or method is called with default arguments.
8 For example, given the declaration:
10 .. code-block:: c++
12   int foo(int value = 5) { return value; }
14 A function call expression that uses a default argument will be diagnosed.
15 Calling it without defaults will not cause a warning:
17 .. code-block:: c++
19   foo();  // warning
20   foo(0); // no warning
22 See the features disallowed in Fuchsia at https://fuchsia.dev/fuchsia-src/development/languages/c-cpp/cxx?hl=en