Skip to content

Commit

Permalink
HPCC-32434 Fix constructor order warnings
Browse files Browse the repository at this point in the history
Another one

Signed-off-by: Richard Chapman <[email protected]>
  • Loading branch information
richardkchapman committed Sep 4, 2024
1 parent 50293b1 commit 80c94d5
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 80c94d5

Please sign in to comment.