Skip to content

Commit

Permalink
Fix use of std::pair
Browse files Browse the repository at this point in the history
  • Loading branch information
jackdelv committed Jan 4, 2024
1 parent f80c362 commit 88c5141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ecl/hql/hqlmanifest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ void getResourceFromJfrog(StringBuffer &localPath, IPropertyTree &item)

StringBuffer errOut;
StringBuffer jfrogOut;
EnvironmentVector env{std::pair("CI", "true")};
EnvironmentVector env{std::pair<std::string, std::string>("CI", "true")};
if (runExternalCommand("jfrog", jfrogOut, errOut, jfrogCmd.str(), nullptr, nullptr, &env) != 0)
throw makeStringExceptionV(0, "Error loading resource from jfrog: \n\"%s\"\n %s", jfrogOut.str(), errOut.str());

Expand Down

0 comments on commit 88c5141

Please sign in to comment.