From 93928d517b4f748fb8bdbd7e0ae5334e2e3a8562 Mon Sep 17 00:00:00 2001
From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= <vslavik@fastmail.fm>
Date: Wed, 16 Apr 2008 22:20:50 +0000
Subject: [PATCH] wchar_t is now always required, updated chartype.h check
 accordingly

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53238 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 include/wx/chartype.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/wx/chartype.h b/include/wx/chartype.h
index 64f7147cbb..4bd55d63bb 100644
--- a/include/wx/chartype.h
+++ b/include/wx/chartype.h
@@ -38,8 +38,8 @@
 #endif /* !defined(wxUSE_WCHAR_T) */
 
 /* Unicode support requires wchar_t */
-#if wxUSE_UNICODE && !wxUSE_WCHAR_T
-    #error "wchar_t must be available in Unicode build"
+#if !wxUSE_WCHAR_T
+    #error "wchar_t must be available"
 #endif /* Unicode */
 
 /*
-- 
2.45.2