2
0
mirror of https://github.com/boostorg/foreach.git synced 2026-02-02 21:02:11 +00:00

fixes a typo in the BCC workaround

[SVN r32788]
This commit is contained in:
Tobias Schwinger
2006-02-09 22:47:38 +00:00
parent 431339f80b
commit 8fb73fe05a

View File

@@ -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<typename T,std::size_t N>
inline T (*&to_ptr(T (&t)[N]))[N]
inline T (*&to_ptr(T (&)[N]))[N]
{
static T (*t)[N] = 0;
return t;