2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-24 18:12:43 +00:00

pyconfig.h must be included before any system header (as per Python docs; essential for Python 2.3 under Tru64 Unix)

[SVN r17799]
This commit is contained in:
Ralf W. Grosse-Kunstleve
2003-03-10 17:25:52 +00:00
parent c29241d859
commit 13b1f434ad
14 changed files with 21 additions and 14 deletions

View File

@@ -3,11 +3,11 @@
// copyright notice appears in all copies. This software is provided
// "as is" without express or implied warranty, and with no claim as
// to its suitability for any purpose.
#include <string>
#include <boost/python/operators.hpp>
#include <boost/python/class.hpp>
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
#include <string>
#include "test_class.hpp"
#if __GNUC__ != 2
# include <ostream>