Fix namespace Az for AZ in ProcessWatcher for iOS (#6382)

Signed-off-by: moraaar <moraaar@amazon.com>
This commit is contained in:
moraaar
2021-12-13 14:03:00 +00:00
committed by GitHub
parent 4670003aaf
commit f941d03f9e
@@ -96,7 +96,7 @@ namespace AzFramework
AZStd::string operator()(const AZStd::vector<AZStd::string>& commandLineArray) const
{
AZStd::string commandLineResult;
Az::StringFunc::Join(commandLineResult, commandLineArray.begin(), commandLineArray.end(), " ");
AZ::StringFunc::Join(commandLineResult, commandLineArray.begin(), commandLineArray.end(), " ");
return commandLineResult;
}
};