summaryrefslogtreecommitdiff
path: root/src/md/inc
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2017-03-23 11:55:26 -0700
committerBruce Forstall <brucefo@microsoft.com>2017-03-23 16:29:49 -0700
commit5c8cb3f135289edba7d79d121e6861fd611e3404 (patch)
tree78352f4c84ca818ae77a8f867ccc893a293da0fd /src/md/inc
parente4849aae67375a2dfbe73bf2bf94e4abc17464d4 (diff)
downloadcoreclr-5c8cb3f135289edba7d79d121e6861fd611e3404.tar.gz
coreclr-5c8cb3f135289edba7d79d121e6861fd611e3404.tar.bz2
coreclr-5c8cb3f135289edba7d79d121e6861fd611e3404.zip
Delete NewMerger
This was only used as part of C++ link.exe for IJW
Diffstat (limited to 'src/md/inc')
-rw-r--r--src/md/inc/liteweightstgdb.h2
-rw-r--r--src/md/inc/rwutil.h24
2 files changed, 0 insertions, 26 deletions
diff --git a/src/md/inc/liteweightstgdb.h b/src/md/inc/liteweightstgdb.h
index 1234524731..057e29d1ca 100644
--- a/src/md/inc/liteweightstgdb.h
+++ b/src/md/inc/liteweightstgdb.h
@@ -66,8 +66,6 @@ protected:
friend class CorMetaDataScope;
friend class COR;
friend class RegMeta;
- friend class MERGER;
- friend class NEWMERGER;
friend class MDInternalRO;
friend class MDInternalRW;
};
diff --git a/src/md/inc/rwutil.h b/src/md/inc/rwutil.h
index 5d7f98919c..81966b7fb9 100644
--- a/src/md/inc/rwutil.h
+++ b/src/md/inc/rwutil.h
@@ -181,30 +181,6 @@ private:
//*********************************************************************
//
-// Merge Token manager. This class is created in GetSaveSize as an agent to
-// notify linker regarding token movements. It does not have the ability to
-// keep track token movement.
-//
-//*********************************************************************
-class MergeTokenManager : public IMapToken
-{
-public:
- STDMETHODIMP QueryInterface(REFIID riid, PVOID *pp);
- STDMETHODIMP_(ULONG) AddRef();
- STDMETHODIMP_(ULONG) Release();
- STDMETHODIMP Map(mdToken tkImp, mdToken tkEmit);
- MergeTokenManager(MDTOKENMAP *pTkMapList, IUnknown *pHandler);
- virtual ~MergeTokenManager();
-private:
- LONG m_cRef;
- MDTOKENMAP *m_pTkMapList;
- IMapToken *m_pDefaultHostRemap;
-};
-
-
-
-//*********************************************************************
-//
// This CMapToken class implemented the IMapToken. It is used in RegMeta for
// filter process. This class can track all of the tokens are mapped. It also
// supplies a Find function.