summaryrefslogtreecommitdiff
path: root/src/vm/compile.h
diff options
context:
space:
mode:
authorPetr Bred <bredpetr@gmail.com>2017-05-26 17:17:05 +0300
committerJan Kotas <jkotas@microsoft.com>2017-05-26 07:17:05 -0700
commit8a934c90711e0d1a915e309941a34db832395076 (patch)
tree0671ade34b3fb81fa373e6017c9ede19521cdc1c /src/vm/compile.h
parent3613e93bb364a82efa1a0d0b82c89b996b043c52 (diff)
downloadcoreclr-8a934c90711e0d1a915e309941a34db832395076.tar.gz
coreclr-8a934c90711e0d1a915e309941a34db832395076.tar.bz2
coreclr-8a934c90711e0d1a915e309941a34db832395076.zip
Fix compile with disabled FEATURE_READYTORUN option (#11875)
- just remove FEATURE_READYTORUN definitions in clrdefinitions.cmake to turn off option Signed-off-by: Petr Bred <bredpetr@gmail.com>
Diffstat (limited to 'src/vm/compile.h')
-rw-r--r--src/vm/compile.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vm/compile.h b/src/vm/compile.h
index 5d4aff755f..8618b01215 100644
--- a/src/vm/compile.h
+++ b/src/vm/compile.h
@@ -654,7 +654,9 @@ public:
ULONG Release();
+#ifdef FEATURE_READYTORUN_COMPILER
void GetSerializedInlineTrackingMap(SBuffer* pBuffer);
+#endif
void Error(mdToken token, Exception * pException);
};