Resolve Some Azure Errors

This commit is contained in:
Yashwant
2020-06-14 10:15:10 +05:30
parent 2c4ad960ae
commit bb3b6776e2
@@ -110,12 +110,9 @@ void PrintInputProcessing(
}
else
{
std::string lowercaseParamName = d.name;
lowercaseParamName[0] = std::tolower(lowercaseParamName[0]);
// Print function call to set the given parameter into the cli.
std::cout << prefix << "setParam" << GetType<T>(d) << "(\""
<< lowercaseParamName << "\", " << goParamName << ")"
<< d.name << "\", " << goParamName << ")"
<< std::endl;
// Print function call to set the given parameter as passed.
@@ -172,12 +169,9 @@ void PrintInputProcessing(
}
else
{
std::string lowercaseParamName = d.name;
lowercaseParamName[0] = std::tolower(lowercaseParamName[0]);
// Print function call to set the given parameter into the cli.
std::cout << prefix << "gonumToArma" << GetType<T>(d)
<< "(\"" << goParamName << "\", " << lowercaseParamName
<< "(\"" << d.name << "\", " << goParamName
<< ")" << std::endl;
// Print function call to set the given parameter as passed.
@@ -235,12 +229,9 @@ void PrintInputProcessing(
}
else
{
std::string lowercaseParamName = d.name;
lowercaseParamName[0] = std::tolower(lowercaseParamName[0]);
// Print function call to set the given parameter into the cli.
std::cout << prefix << "gonumToArmaMatWithInfo"
<< "(\"" << goParamName << "\", " << lowercaseParamName
<< "(\"" << d.name << "\", " << goParamName
<< ")" << std::endl;
// Print function call to set the given parameter as passed.