Remove some non-unicode characters from source code (#39527)
authormonojenkins <jo.shields+jenkins@xamarin.com>
Sat, 18 Jul 2020 04:15:55 +0000 (00:15 -0400)
committerGitHub <noreply@github.com>
Sat, 18 Jul 2020 04:15:55 +0000 (21:15 -0700)
commit328fc0f9863fac35d5cfc342ba3dbd453bfb7e51
treee640d90e242aeff334a59ad0d182324a8a578062
parent406061553100bca30484265aaeacfa69686150cd
Remove some non-unicode characters from source code (#39527)

<!--
Thank you for your Pull Request!

If you are new to contributing to Mono, please try to do your best at conforming to our coding guidelines http://www.mono-project.com/community/contributing/coding-guidelines/ but don't worry if you get something wrong. One of the project members will help you to get things landed.

Does your pull request fix any of the existing issues? Please use the following format: Fixes #issue-number
-->

I've been noticing some C compiler warnings during build of dotnet/runtime.
```
  C:\Users\gotos\source\repos\runtime\src\mono\mono\mini\mini-runtime.c(1920,1): warning C4819: The file contains a character that cannot be represented in the current code page (949). Save the file in Unicode format to prevent data loss [C:\Users\gotos\source\repos\runtime\src\mono\msvc\libmono-dynamic.vcxproj]
  C:\Users\gotos\source\repos\runtime\src\mono\mono\mini\method-to-ir.c(5337,1): warning C4819: The file contains a character that cannot be represented in the current code page (949). Save the file in Unicode format to prevent data loss [C:\Users\gotos\source\repos\runtime\src\mono\msvc\libmono-dynamic.vcxproj]
```
Apparently there are some smart quotes and a zero-width space (Why?!) in some of Mono's source code. This PR removes those needless unicode characters.

I hope that opening a PR here will result in the changed code being mirrored to dotnet/runtime repo as well?

Co-authored-by: Gnbrkm41 <Gnbrkm41@users.noreply.github.com>
src/mono/mono/mini/method-to-ir.c
src/mono/mono/mini/mini-runtime.c