Skip to content

Commit

Permalink
Merge pull request hpcc-systems#19070 from richardkchapman/HPCC-32434a
Browse files Browse the repository at this point in the history
HPCC-32434 Fix constructor order warnings

Reviewed-by: Gavin Halliday <[email protected]>
Merged-by: Gavin Halliday <[email protected]>
  • Loading branch information
ghalliday authored Sep 4, 2024
2 parents 50293b1 + 80c94d5 commit 8372412
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/esp-api/espservice.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ int EspService::sendRequest()

}
EspService::EspService(const char* serviceName, const char* methodName, const char* reqString, const char* resType, const char* reqType,
const char* target, const char* username, const char* password):reqString(reqString), url(target), resType(resType),reqType(reqType), username(username), password(password)
const char* target, const char* username, const char* password):reqString(reqString), resType(resType), reqType(reqType), username(username), password(password), url(target)
{
}

0 comments on commit 8372412

Please sign in to comment.