summaryrefslogtreecommitdiff
path: root/src/vm/assembly.hpp
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2019-05-13 19:58:23 -0700
committerGitHub <noreply@github.com>2019-05-13 19:58:23 -0700
commit6881de09b3d9ba165194ba416dd0786db00c2d5d (patch)
tree97ad4f996a0052cdd3dfa4c2ad0c9e275092d559 /src/vm/assembly.hpp
parent6b19bc3fb7add4999f3ac9e1a5fb2244de2c9836 (diff)
downloadcoreclr-6881de09b3d9ba165194ba416dd0786db00c2d5d.tar.gz
coreclr-6881de09b3d9ba165194ba416dd0786db00c2d5d.tar.bz2
coreclr-6881de09b3d9ba165194ba416dd0786db00c2d5d.zip
Delete InternalCasingHelper (#24511)
The unmanaged runtime has number of different paths for case-insensitive operations, each with unique issues. This is replacing InternalCasingHelper with SString to reduce number of different paths for case-insensitive operations that need to be maintained. Contributes to #20616
Diffstat (limited to 'src/vm/assembly.hpp')
-rw-r--r--src/vm/assembly.hpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/vm/assembly.hpp b/src/vm/assembly.hpp
index 5adf596a38..89793974e5 100644
--- a/src/vm/assembly.hpp
+++ b/src/vm/assembly.hpp
@@ -24,16 +24,6 @@
#include "cordbpriv.h"
#include "assemblyspec.hpp"
-// A helper macro for the assembly's module hash (m_pAllowedFiles).
-#define UTF8_TO_LOWER_CASE(str, qb) \
-{ \
- WRAPPER_NO_CONTRACT; \
- INT32 allocBytes = InternalCasingHelper::InvariantToLower(NULL, 0, str); \
- qb.AllocThrows(allocBytes); \
- InternalCasingHelper::InvariantToLower((LPUTF8) qb.Ptr(), allocBytes, str); \
-}
-
-
class BaseDomain;
class AppDomain;
class DomainAssembly;