summaryrefslogtreecommitdiff
path: root/zen/zstring.h
diff options
context:
space:
mode:
Diffstat (limited to 'zen/zstring.h')
-rw-r--r--zen/zstring.h9
1 files changed, 1 insertions, 8 deletions
diff --git a/zen/zstring.h b/zen/zstring.h
index 1afebe58..b8dfb9a3 100644
--- a/zen/zstring.h
+++ b/zen/zstring.h
@@ -138,7 +138,7 @@ Zstring getFileExtension(const Zstring& filePath)
//common unicode characters
const wchar_t EN_DASH = L'\u2013';
const wchar_t EM_DASH = L'\u2014';
-const wchar_t* const SPACED_DASH = L" \u2014 "; //using 'EM DASH'
+ const wchar_t* const SPACED_DASH = L" \u2014 "; //using 'EM DASH'
const wchar_t LTR_MARK = L'\u200E'; //UTF-8: E2 80 8E
const wchar_t* const ELLIPSIS = L"\u2026"; //"..."
const wchar_t MULT_SIGN = L'\u00D7'; //fancy "x"
@@ -151,11 +151,4 @@ const wchar_t BIDI_POP_DIR_ISOLATE = L'\u2069'; //UTF-8: E2 81 A9 => not work
const wchar_t BIDI_DIR_EMBEDDING_RTL = L'\u202B'; //UTF-8: E2 80 AB => not working on Win 10
const wchar_t BIDI_POP_DIR_FORMATTING = L'\u202C'; //UTF-8: E2 80 AC => not working on Win 10
-
-
-
-//---------------------------------------------------------------------------
-//ZEN macro consistency checks:
-
-
#endif //ZSTRING_H_73425873425789
bgstack15