work-around for MIPSpro bug

[SVN r15574]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2002-09-30 19:45:22 +00:00
parent cc5a2ae388
commit fb8fa3c7b6

View File

@ -18,6 +18,13 @@
#ifndef BOOST_TUPLE_HPP
#define BOOST_TUPLE_HPP
#if defined(__sgi) && defined(_COMPILER_VERSION) && _COMPILER_VERSION <= 730
// Work around a compiler bug.
// boost::python::tuple has to be seen by the compiler before the
// boost::tuple class template.
namespace boost { namespace python { class tuple; }}
#endif
#include "boost/config.hpp"
#include "boost/static_assert.hpp"