From 0c651a890cc2ba8bc526762b416b57274093bb84 Mon Sep 17 00:00:00 2001 From: Jonathan Brandmeyer Date: Thu, 26 Aug 2004 21:28:28 +0000 Subject: [PATCH] Use the non-const prototype for all currently known versions of MSVC. [SVN r24771] --- test/slice.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/slice.cpp b/test/slice.cpp index 3c8ffaa1..4da61f1d 100644 --- a/test/slice.cpp +++ b/test/slice.cpp @@ -81,7 +81,7 @@ bool check_numeric_array_rich_slice() // Verify functions accepting a slice argument can be called bool accept_slice( slice) { return true; } -#if BOOST_WORKAROUND(BOOST_MSVC, <= 1300) +#if BOOST_WORKAROUND( BOOST_MSVC, <= 1400) int check_slice_get_indicies(slice index); #endif int check_slice_get_indicies(const slice index)