Index: compiled/String.cpp |
diff --git a/compiled/String.cpp b/compiled/String.cpp |
index 38f458a432978d7c516ce07f796c77428d6a31ec..9f090f0e033ba4336e6f5877f60c76e918696e26 100644 |
--- a/compiled/String.cpp |
+++ b/compiled/String.cpp |
@@ -25,12 +25,12 @@ DependentString TrimSpaces(const String& value) |
auto end = value.length(); |
for (; start < end; ++start) |
{ |
- if (value[start] > u' ') |
+ if (value[start] > ABP_TEXT(' ')) |
break; |
} |
for (; end > start; --end) |
{ |
- if (value[end - 1] > u' ') |
+ if (value[end - 1] > ABP_TEXT(' ')) |
break; |
} |
return DependentString(value, start, end - start); |