You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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:
committed by
Keli Hlodversson
parent
ab452b1890
commit
f9f3266913
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user