mirror of
https://github.com/boostorg/tuple.git
synced 2025-07-30 20:57:15 +02:00
work-around for MIPSpro bug
[SVN r15574]
This commit is contained in:
@ -18,6 +18,13 @@
|
|||||||
#ifndef BOOST_TUPLE_HPP
|
#ifndef BOOST_TUPLE_HPP
|
||||||
#define 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/config.hpp"
|
||||||
#include "boost/static_assert.hpp"
|
#include "boost/static_assert.hpp"
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user