Change typedef for BOOL in gcenv.base.h to int. (dotnet/coreclr#10486)
authorAditya Mandaleeka <adityamandaleeka@users.noreply.github.com>
Sun, 26 Mar 2017 14:59:49 +0000 (07:59 -0700)
committerJan Kotas <jkotas@microsoft.com>
Sun, 26 Mar 2017 14:59:49 +0000 (07:59 -0700)
Commit migrated from https://github.com/dotnet/coreclr/commit/840554e77f01a327e0c5df59d229149fd50b5c2d

src/coreclr/src/gc/env/gcenv.base.h

index 9fe583f..f5e730d 100644 (file)
@@ -37,7 +37,7 @@
 // Aliases for Win32 types
 //
 
-typedef uint32_t BOOL;
+typedef int BOOL;
 typedef uint32_t DWORD;
 
 // -----------------------------------------------------------------------------------------------------------