We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23bfb84 commit fedf8d9Copy full SHA for fedf8d9
2 files changed
test/data_members.cpp
@@ -7,6 +7,11 @@
7
#include <boost/python/module.hpp>
8
#include "test_class.hpp"
9
10
+#if defined(_AIX) && defined(__EDG_VERSION__) && __EDG_VERSION__ < 245
11
+# include <iostream> // works around a KCC intermediate code generation bug
12
+#endif
13
+
14
15
using namespace boost::python;
16
17
typedef test_class<> X;
test/minimal.cpp
@@ -5,6 +5,10 @@
5
// to its suitability for any purpose.
6
BOOST_PYTHON_MODULE_INIT(minimal_ext)
{
boost::python::module m("minimal_ext");
0 commit comments