From 5d9010167160d18933eeb26ab34e124cdd2c24ed Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 5 Aug 2003 03:03:49 +0000 Subject: [PATCH] workaround for MIPSpro, thanks to John Spicer [SVN r19453] --- include/boost/python/args.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/python/args.hpp b/include/boost/python/args.hpp index 1d0576f0..aed14276 100644 --- a/include/boost/python/args.hpp +++ b/include/boost/python/args.hpp @@ -108,6 +108,10 @@ namespace detail # endif } +#if defined(__sgi) && defined(_COMPILER_VERSION) && _COMPILER_VERSION <= 730 +class old_edg_workaround_for_arg { friend class arg; }; +#endif + struct arg : detail::keywords<1> { explicit arg(char const *name)