From 6e06b50adf814b3e4a519ceaebcb18edd7ac80dd Mon Sep 17 00:00:00 2001 From: Yung Lee Date: Sun, 21 Apr 2013 01:01:39 +0800 Subject: [PATCH] Remove non-ascii characters at a comment line in d.cxx that trouble VC++ --- Source/Modules/d.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Modules/d.cxx b/Source/Modules/d.cxx index e09e253f8..5d59a2e38 100644 --- a/Source/Modules/d.cxx +++ b/Source/Modules/d.cxx @@ -3743,7 +3743,7 @@ private: String *nspace = getNSpace(); if (nspace) { // Check the root package/outermost namespace (a class A in module - // A.B leads to problems if another module A.C is also imported)… + // A.B leads to problems if another module A.C is also imported) if (Len(package) > 0) { String *dotless_package = NewStringWithSize(package, Len(package) - 1); if (Cmp(class_name, dotless_package) == 0) {