Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2016-02-01 05:47:25 +0300
committerJan Kotas <jkotas@microsoft.com>2016-02-01 11:26:26 +0300
commitd30602c7cbec7e3e670cf8de3de6e5becb9d4470 (patch)
tree8f06b2909514dff058bc55d1049a7dbd430d95f5 /src/Native/Runtime/CommonMacros.h
parent44ff6e0c334ccc399620e945ae0345530822d959 (diff)
Fix inconsistent WIN32 define uses
_WIN32 is predefined by Windows compilers. We have been using it in most places already, change the remaining few to use it as well. Delete WIN32 since it became unused, as well as a few other defines.
Diffstat (limited to 'src/Native/Runtime/CommonMacros.h')
-rw-r--r--src/Native/Runtime/CommonMacros.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/CommonMacros.h b/src/Native/Runtime/CommonMacros.h
index a36833e25..73d9a9e3e 100644
--- a/src/Native/Runtime/CommonMacros.h
+++ b/src/Native/Runtime/CommonMacros.h
@@ -208,7 +208,7 @@ bool inline FitsInI4(__int64 val)
#ifndef GCENV_INCLUDED
#if !defined(_INC_WINDOWS) && !defined(BINDER)
-#ifdef WIN32
+#ifdef _WIN32
// this must exactly match the typedef used by windows.h
typedef long HRESULT;
#else