summaryrefslogtreecommitdiff
path: root/src/vm/proftoeeinterfaceimpl.cpp
diff options
context:
space:
mode:
authorMatt Ellis <matell@microsoft.com>2015-02-03 19:27:37 -0800
committerMatt Ellis <matell@microsoft.com>2015-02-03 19:27:37 -0800
commit3e52744f61498216e71a6f5099a576a31696ebe2 (patch)
treef8c0f82346a30a0f863291ec8b6c715999fa9232 /src/vm/proftoeeinterfaceimpl.cpp
parent2a956c5fb7a73c364c0c264c4d2ec29493542528 (diff)
downloadcoreclr-3e52744f61498216e71a6f5099a576a31696ebe2.tar.gz
coreclr-3e52744f61498216e71a6f5099a576a31696ebe2.tar.bz2
coreclr-3e52744f61498216e71a6f5099a576a31696ebe2.zip
Remove non ASCII characters from source files
Our native files were more or less encoded in Windows-1252, which causes problems when we try to compile them on machines where the current codepage can't represent everything that Windows-1252 can. With this conversion I just moved characters to their ASCII counterparts (e.g. no smart quotes, the section marker glyph is now "Section"). There were two places where I couldn't do the straight forward thing, in object.h we wanted to insert the Per Mille symbol in a comment so instead I just spelled out the Unicode codepoint. In morph.cpp, there was a comment pointing to a paper by Torbjörn Granlund (note the diaeresis above the second o). In this case, unfortuntely I had to just drop the diaeresis. However, searching for "Torbjorn Granlund" will lead you to the right person. Fixes #49
Diffstat (limited to 'src/vm/proftoeeinterfaceimpl.cpp')
-rw-r--r--src/vm/proftoeeinterfaceimpl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vm/proftoeeinterfaceimpl.cpp b/src/vm/proftoeeinterfaceimpl.cpp
index b12185c6e8..ea32a0dfa8 100644
--- a/src/vm/proftoeeinterfaceimpl.cpp
+++ b/src/vm/proftoeeinterfaceimpl.cpp
@@ -86,12 +86,12 @@
// startup). This will also allow the SetEnterLeaveFunctionHooks(2) info
// functions to be called outside of Initialize(). If a profiler later
// attaches and calls these functions, then the slow-path wrapper will call
-// into the profiler’s ELT hooks.
+// into the profiler's ELT hooks.
// * COMPLUS_TestOnlyEnableObjectAllocatedHook:
// * If nonzero, then on startup the runtime will act as if a profiler was loaded
// on startup and requested ObjectAllocated callback (even if no profiler is loaded
// on startup). If a profiler later attaches and calls these functions, then the
-// ObjectAllocated notifications will call into the profiler’s ObjectAllocated callback.
+// ObjectAllocated notifications will call into the profiler's ObjectAllocated callback.
// * COMPLUS_TestOnlyEnableICorProfilerInfo:
// * If nonzero, then attaching profilers allows to call ICorProfilerInfo inteface,
// which would otherwise be disallowed for attaching profilers
@@ -5395,7 +5395,7 @@ HRESULT ProfToEEInterfaceImpl::GetClassFromTokenAndTypeArgs(ModuleID moduleID,
if (GetThreadNULLOk() == NULL)
{
// Type system will try to validate as part of its contract if the current
- // AppDomain returned by GetAppDomain can load types in specified module’s
+ // AppDomain returned by GetAppDomain can load types in specified module's
// assembly. On a non-EE thread it results in an AV in a check build
// since the type system tries to dereference NULL returned by GetAppDomain.
// More importantly, loading a type on a non-EE thread is not allowed.