From fcd8dd3f335dd93ecd14196c660320148ef9f5c0 Mon Sep 17 00:00:00 2001 From: Michael Wetherell Date: Mon, 17 Oct 2005 17:08:28 +0000 Subject: [PATCH] Compile fix for Unicode build on win64 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@35913 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/variant.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/variant.cpp b/src/common/variant.cpp index 58e7e327e7..b9139f68a9 100644 --- a/src/common/variant.cpp +++ b/src/common/variant.cpp @@ -706,7 +706,7 @@ bool wxVariantDataChar::Read(wxInputStream& str) bool wxVariantDataChar::Read(wxString& str) { - m_value = str.ToAscii()[0u]; + m_value = str.ToAscii()[size_t(0)]; return true; } -- 2.47.2