Some more build fixes

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-08-05 21:49:00 -07:00
parent e28d04aea6
commit c85e5a6886
4 changed files with 8 additions and 4 deletions
@@ -18,9 +18,9 @@
namespace GridMate namespace GridMate
{ {
string Utils::GetMachineAddress(int familyType) AZStd::string Utils::GetMachineAddress(int familyType)
{ {
string machineName; AZStd::string machineName;
struct RTMRequest struct RTMRequest
{ {
nlmsghdr m_msghdr; nlmsghdr m_msghdr;
@@ -8,6 +8,8 @@
#include <unistd.h> #include <unistd.h>
#include <AzCore/std/string/string.h>
namespace GridMate namespace GridMate
{ {
namespace Platform namespace Platform
@@ -8,6 +8,8 @@
#include <unistd.h> #include <unistd.h>
#include <AzCore/std/string/string.h>
namespace GridMate namespace GridMate
{ {
namespace Platform namespace Platform
@@ -2337,8 +2337,8 @@ void InternalFormatStringMessage(AZStd::string& outString, const AZStd::string&
static const char tokens2[3] = { token, token, '\0' }; static const char tokens2[3] = { token, token, '\0' };
int maxArgUsed = 0; int maxArgUsed = 0;
int lastPos = 0; size_t lastPos = 0;
int curPos = 0; size_t curPos = 0;
const int sourceLen = static_cast<int>(sString.length()); const int sourceLen = static_cast<int>(sString.length());
while (true) while (true)
{ {