Skip to content

Commit fa2185e

Browse files
author
Markus Schöpflin
committed
Merged header inclusion order fix from trunk to release branch.
[SVN r34194]
1 parent 5cc3346 commit fa2185e

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

test/callbacks.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
// Distributed under the Boost Software License, Version 1.0. (See
33
// accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
5-
#include <boost/assert.hpp>
65

76
#include <boost/python/module.hpp>
87
#include <boost/python/def.hpp>
@@ -13,6 +12,7 @@
1312
#include <boost/python/reference_existing_object.hpp>
1413
#include <boost/python/call.hpp>
1514
#include <boost/python/object.hpp>
15+
#include <boost/assert.hpp>
1616

1717
using namespace boost::python;
1818
BOOST_STATIC_ASSERT(converter::is_object_manager<handle<> >::value);

test/list.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
// Distributed under the Boost Software License, Version 1.0. (See
33
// accompanying file LICENSE_1_0.txt or copy at
44
// http://www.boost.org/LICENSE_1_0.txt)
5-
#include <boost/assert.hpp>
6-
75

86
#include <boost/python/module.hpp>
97
#include <boost/python/def.hpp>
108
#include <boost/python/class.hpp>
119
#include <boost/python/list.hpp>
1210
#include <boost/python/make_function.hpp>
1311
#include <boost/lexical_cast.hpp>
12+
#include <boost/assert.hpp>
1413
#include "test_class.hpp"
1514

1615
using namespace boost::python;

0 commit comments

Comments
 (0)