From 3e52744f61498216e71a6f5099a576a31696ebe2 Mon Sep 17 00:00:00 2001 From: Matt Ellis Date: Tue, 3 Feb 2015 19:27:37 -0800 Subject: Remove non ASCII characters from source files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/vm/assembly.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vm/assembly.hpp') diff --git a/src/vm/assembly.hpp b/src/vm/assembly.hpp index 6493b0b1d1..812efb3c2b 100644 --- a/src/vm/assembly.hpp +++ b/src/vm/assembly.hpp @@ -898,7 +898,7 @@ public: // Checks to see if an assembly has friend access to a particular member. // // Arguments: - // pAccessingAssembly – the assembly requesting friend access + // pAccessingAssembly - the assembly requesting friend access // pMember - the member that is attempting to be accessed // // Return Value: -- cgit v1.2.3