Put the borland workarounds back - it still seems to need them. Will probably

have to do something else on top of this for any problems this causes.


[SVN r37803]
This commit is contained in:
Daniel James
2007-05-27 09:28:50 +00:00
parent 15d9d535a9
commit d25ca5a376
2 changed files with 2 additions and 2 deletions

View File

@@ -222,7 +222,7 @@ namespace boost
}
}
#if BOOST_WORKAROUND(__BORLANDC__, < 0x0590)
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
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__, < 0x0590)
#if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x551))
template <class T> inline std::size_t hash_range(T*, T*);
template <class T> inline void hash_range(std::size_t&, T*, T*);
#endif