diff options
author | Jan Vorlicek <janvorli@microsoft.com> | 2015-07-08 11:55:54 +0200 |
---|---|---|
committer | Jan Vorlicek <janvorli@microsoft.com> | 2015-07-08 11:55:54 +0200 |
commit | 1d1d3ac90668b02287051dbaca5d3d163d6807ac (patch) | |
tree | 298a3aa2537136205696b1c4bc14d765e115a146 /src/vm/compile.h | |
parent | 6ddbc71bfcfa87df7b203808bbd62323aa4dfdaf (diff) | |
download | coreclr-1d1d3ac90668b02287051dbaca5d3d163d6807ac.tar.gz coreclr-1d1d3ac90668b02287051dbaca5d3d163d6807ac.tar.bz2 coreclr-1d1d3ac90668b02287051dbaca5d3d163d6807ac.zip |
Add missing contracts to some destructors
This change adds missing contract annotation to several destructors that
were missing it.
Diffstat (limited to 'src/vm/compile.h')
-rw-r--r-- | src/vm/compile.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/vm/compile.h b/src/vm/compile.h index b13954116c..a34bd93460 100644 --- a/src/vm/compile.h +++ b/src/vm/compile.h @@ -183,7 +183,10 @@ typedef SHash<ZapperLoaderModuleTableTraits> ZapperLoaderModuleTable; class CEECompileInfo : public ICorCompileInfo { public: - virtual ~CEECompileInfo() {} + virtual ~CEECompileInfo() + { + WRAPPER_NO_CONTRACT; + } HRESULT Startup( BOOL fForceDebug, BOOL fForceProfiling, |