From 7ec6b27014a07e96888303a7dd83015996f060b1 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Sun, 12 Jun 2011 20:57:42 +0300 Subject: [PATCH] Removed wstring completely, strings::UniString should be used instead --- std/string.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/std/string.hpp b/std/string.hpp index 0cdd70eda6..cd286ade99 100644 --- a/std/string.hpp +++ b/std/string.hpp @@ -12,12 +12,6 @@ using std::basic_string; using std::string; using std::getline; -#if defined(OMIM_OS_BADA) || defined(OMIM_OS_ANDROID) -typedef std::basic_string wstring; -#else -using std::wstring; -#endif - #ifdef DEBUG_NEW #define new DEBUG_NEW #endif