We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19b1d22 commit b7a4d2bCopy full SHA for b7a4d2b
src/jsonrpccpp/common/specificationparser.cpp
@@ -62,10 +62,12 @@ void SpecificationParser::GetProcedure (Json::Value &si
62
63
if (signature[KEY_SPEC_PROCEDURE_PARAMETERS].isArray())
64
{
65
+ result.SetParameterDeclarationType(PARAMS_BY_POSITION);
66
GetPositionalParameters(signature, result);
67
}
68
else if (signature[KEY_SPEC_PROCEDURE_PARAMETERS].isObject())
69
70
+ result.SetParameterDeclarationType(PARAMS_BY_NAME);
71
GetNamedParameters(signature, result);
72
73
0 commit comments