Submitting a modified pull request:

PR #6254: Fix An Incorrect Uint Assignment, Causing Problems On Clang Builds (Contributed by dyanikoglu)

As the struct is part of a documented debugger interface in VS, I changed the assignement instead of the struct member type.

#rb Brandon.Schaefer
#jira UE-81259

[CL 9406591 by Keli Hlodversson in Dev-VR branch]
This commit is contained in:
dyanikoglu
2019-10-03 17:22:52 -04:00
committed by Keli Hlodversson
parent ab452b1890
commit f9f3266913

View File

@@ -109,7 +109,7 @@ namespace {
uint32 dwFlags; // Reserved for future use, must be zero.
};
THREADNAME_INFO ThreadNameInfo = {0x1000, ThreadName, -1, 0};
THREADNAME_INFO ThreadNameInfo = {0x1000, ThreadName, (uint32)-1, 0};
__try
{