Try turning off a borland workaround in the new version of borland, as it

seems to be causing problems in the tests.


[SVN r37426]
This commit is contained in:
Daniel James
2007-04-12 20:33:48 +00:00
parent d14013264c
commit 2353e7abd8
2 changed files with 2 additions and 2 deletions

View File

@@ -222,7 +222,7 @@ namespace boost
}
}
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
#if BOOST_WORKAROUND(__BORLANDC__, < 0x0590)
template <class T>
inline std::size_t hash_range(T* first, T* last)
{

View File

@@ -31,7 +31,7 @@ namespace boost
template <class It> std::size_t hash_range(It, It);
template <class It> void hash_range(std::size_t&, It, It);
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
#if BOOST_WORKAROUND(__BORLANDC__, < 0x0590)
template <class T> inline std::size_t hash_range(T*, T*);
template <class T> inline void hash_range(std::size_t&, T*, T*);
#endif