2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-02 21:12:15 +00:00

Merged header inclusion order fix from trunk to release branch.

[SVN r34194]
This commit is contained in:
Markus Schöpflin
2006-06-06 09:39:16 +00:00
parent 5cc33461dd
commit fa2185e5ab
2 changed files with 2 additions and 3 deletions

View File

@@ -2,7 +2,6 @@
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/assert.hpp>
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
@@ -13,6 +12,7 @@
#include <boost/python/reference_existing_object.hpp>
#include <boost/python/call.hpp>
#include <boost/python/object.hpp>
#include <boost/assert.hpp>
using namespace boost::python;
BOOST_STATIC_ASSERT(converter::is_object_manager<handle<> >::value);

View File

@@ -2,8 +2,6 @@
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#include <boost/assert.hpp>
#include <boost/python/module.hpp>
#include <boost/python/def.hpp>
@@ -11,6 +9,7 @@
#include <boost/python/list.hpp>
#include <boost/python/make_function.hpp>
#include <boost/lexical_cast.hpp>
#include <boost/assert.hpp>
#include "test_class.hpp"
using namespace boost::python;