Add workaround for Intel-12.1 on Windows.

Fixes #6359.

[SVN r76319]
This commit is contained in:
John Maddock
2012-01-05 13:33:48 +00:00
parent e389d92752
commit eedb7b5063

View File

@ -180,8 +180,14 @@ private:
} }
inline int toi(ForwardIter& i, ForwardIter j, int base) inline int toi(ForwardIter& i, ForwardIter j, int base)
{ {
#if defined(_MSC_VER) && defined(__INTEL_COMPILER) && (__INTEL_COMPILER == 9999)
// Workaround for Intel support issue #656654.
// See also https://svn.boost.org/trac/boost/ticket/6359
return toi(i, j, base, mpl::false_());
#else
typedef typename boost::is_convertible<ForwardIter, const char_type*&>::type tag_type; typedef typename boost::is_convertible<ForwardIter, const char_type*&>::type tag_type;
return toi(i, j, base, tag_type()); return toi(i, j, base, tag_type());
#endif
} }
const traits& m_traits; // the traits class for localised formatting operations const traits& m_traits; // the traits class for localised formatting operations