summaryrefslogtreecommitdiff
path: root/src/inc/gcinfotypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/inc/gcinfotypes.h')
-rw-r--r--src/inc/gcinfotypes.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/inc/gcinfotypes.h b/src/inc/gcinfotypes.h
index 7852f8687f..7334edd680 100644
--- a/src/inc/gcinfotypes.h
+++ b/src/inc/gcinfotypes.h
@@ -62,7 +62,6 @@
//--------------------------------------------------------------------------------
__forceinline size_t SAFE_SHIFT_LEFT(size_t x, size_t count)
{
- LIMITED_METHOD_DAC_CONTRACT;
_ASSERTE(count <= BITS_PER_SIZE_T);
return (x << 1) << (count-1);
}