summaryrefslogtreecommitdiff
path: root/src/vm/dataimage.cpp
diff options
context:
space:
mode:
authorJohn Chen (CLR) <jochen@microsoft.com>2015-04-29 13:13:30 -0700
committerJohn Chen (CLR) <jochen@microsoft.com>2015-04-29 14:45:36 -0700
commit6058c71910eed8afd1ff57e4c51c9ad4ce623973 (patch)
tree3dc18b20c1a1a9de48ef8773158b61df7808b0c1 /src/vm/dataimage.cpp
parent9579c444040a9fa9780b299cd536cb8ca1b8eaff (diff)
downloadcoreclr-6058c71910eed8afd1ff57e4c51c9ad4ce623973.tar.gz
coreclr-6058c71910eed8afd1ff57e4c51c9ad4ce623973.tar.bz2
coreclr-6058c71910eed8afd1ff57e4c51c9ad4ce623973.zip
Fix warnings introduced by crossgen
Diffstat (limited to 'src/vm/dataimage.cpp')
-rw-r--r--src/vm/dataimage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vm/dataimage.cpp b/src/vm/dataimage.cpp
index 946ffaf91e..6fd9744b9b 100644
--- a/src/vm/dataimage.cpp
+++ b/src/vm/dataimage.cpp
@@ -707,7 +707,7 @@ FORCEINLINE static CorCompileSection GetSectionForNodeType(ZapNodeType type)
{
LIMITED_METHOD_CONTRACT;
- switch (type)
+ switch ((int)type)
{
// SECTION_MODULE
case NodeTypeForItemKind(DataImage::ITEM_MODULE):