Use dummy uallong() function for all Intel targets

64-bit Intel targets built with GCC/Clang were using strict memory alignment version of this function
This commit is contained in:
alexey.lysiuk 2018-01-14 10:12:00 +02:00
parent 72f181be08
commit 09e2326c63

View file

@ -815,7 +815,7 @@ TArray<FString> ACS_StringBuilderStack;
//
//============================================================================
#if defined(_M_IX86) || defined(_M_X64) || defined(__i386__)
#if defined(_M_IX86) || defined(_M_X64) || defined(__i386__) || defined(__x86_64__)
inline int uallong(const int &foo)
{
return foo;