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>2017-04-21 01:11:07 +0300
committerGitHub <noreply@github.com>2017-04-21 01:11:07 +0300
commite70ea6b9df34af48f9b6dc47a16d18cc430f6724 (patch)
tree8d7b0b02f6d5e084aa59b3efe79560f5cd871503 /src/Native/Runtime/MiscHelpers.cpp
parente874d4e33b14dd7ac48cc95bc4e6eea629d5b916 (diff)
Remove unnecessary casts around BulkWriteBarrier size argument (#3395)
Diffstat (limited to 'src/Native/Runtime/MiscHelpers.cpp')
-rw-r--r--src/Native/Runtime/MiscHelpers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Native/Runtime/MiscHelpers.cpp b/src/Native/Runtime/MiscHelpers.cpp
index 0db61bcf4..d91fae440 100644
--- a/src/Native/Runtime/MiscHelpers.cpp
+++ b/src/Native/Runtime/MiscHelpers.cpp
@@ -660,7 +660,7 @@ COOP_PINVOKE_HELPER(Boolean, RhpArrayCopy, (Array * pSourceArray, Int32 sourceIn
else
InlineBackwardGCSafeCopy(pDestinationData, pSourceData, size);
- InlinedBulkWriteBarrier(pDestinationData, (UInt32)size);
+ InlinedBulkWriteBarrier(pDestinationData, size);
}
else
{