From 8fb73fe05a0cebd857200b40f670fa4e07ca1e23 Mon Sep 17 00:00:00 2001 From: Tobias Schwinger Date: Thu, 9 Feb 2006 22:47:38 +0000 Subject: [PATCH] fixes a typo in the BCC workaround [SVN r32788] --- include/boost/foreach.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/foreach.hpp b/include/boost/foreach.hpp index 7bc7b01..d59e631 100755 --- a/include/boost/foreach.hpp +++ b/include/boost/foreach.hpp @@ -314,7 +314,7 @@ inline T *&to_ptr(T const &) // Borland needs a little extra help with arrays #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) template -inline T (*&to_ptr(T (&t)[N]))[N] +inline T (*&to_ptr(T (&)[N]))[N] { static T (*t)[N] = 0; return t;