From 58271f42ceaa3f27b96df865152fda417e5a52f7 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 6 Apr 2010 17:38:27 +0000 Subject: [PATCH] Attempt to correct mysterious MSVC6 compilation error. For some reasons MSVC6 refuses to compile TestData struct initialization. Try to work around it by not using wxULongLong as this looks like the only thing which might be confusing it. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@63874 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/filename/filenametest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/filename/filenametest.cpp b/tests/filename/filenametest.cpp index cdeaef074a..990dec860a 100644 --- a/tests/filename/filenametest.cpp +++ b/tests/filename/filenametest.cpp @@ -485,7 +485,7 @@ void FileNameTestCase::TestGetHumanReadable() static const struct TestData { const char *result; - wxULongLong size; + int size; int prec; wxSizeConvention conv; } testData[] = -- 2.45.2