summaryrefslogtreecommitdiffstats
path: root/tests/auto/qdoc/generatedoutput/testdata/testcpp/testcpp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qdoc/generatedoutput/testdata/testcpp/testcpp.cpp')
-rw-r--r--tests/auto/qdoc/generatedoutput/testdata/testcpp/testcpp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qdoc/generatedoutput/testdata/testcpp/testcpp.cpp b/tests/auto/qdoc/generatedoutput/testdata/testcpp/testcpp.cpp
index 66c4adba3..e025355af 100644
--- a/tests/auto/qdoc/generatedoutput/testdata/testcpp/testcpp.cpp
+++ b/tests/auto/qdoc/generatedoutput/testdata/testcpp/testcpp.cpp
@@ -152,7 +152,7 @@ void Test::someFunctionDefaultArg(int i, bool b = false)
*/
// Documented below with an \fn command. Unnecessary but we support it, and it's used.
-int Test::someFunction(int v)
+int Test::someFunction(int, int v)
{
return v;
}
@@ -164,7 +164,7 @@ int Test::someFunction(int v)
*/
/*!
- \fn int Test::someFunction(int v = 0)
+ \fn int Test::someFunction(int, int v = 0)
Function that takes a parameter \a v.
Also returns the value of \a v.