From 9ea7a5ddb71c3f84d080897a2d463935448bc556 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 1 Nov 2008 18:05:59 +0000 Subject: [PATCH] yet another compilation fix, this time for VC9 git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56630 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- tests/arrays/arrays.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/arrays/arrays.cpp b/tests/arrays/arrays.cpp index 3df8126846..5ed8f5eee3 100644 --- a/tests/arrays/arrays.cpp +++ b/tests/arrays/arrays.cpp @@ -614,7 +614,7 @@ void ArraysTestCase::Swap() DoTestSwap(1, 10, 100, (wxArrayInt *)NULL); #endif - DoTestSwap(6, 28, 496, (wxArrayLong *)NULL); + DoTestSwap(6L, 28L, 496L, (wxArrayLong *)NULL); } void ArraysTestCase::TestSTL()