2
0
mirror of https://github.com/boostorg/python.git synced 2026-02-01 08:42:16 +00:00

BOOST_PYTHON_EXPORT -> BOOST_PYTHON_DECL

[SVN r12187]
This commit is contained in:
Dave Abrahams
2002-01-01 18:21:31 +00:00
parent 015b875a9e
commit e934be2d99
2 changed files with 5 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ bool type_id_before::operator()(type_id_t const& x, type_id_t const& y) const
return x < y;
}
BOOST_PYTHON_EXPORT std::ostream& operator<<(std::ostream& os, type_id_t const& x)
BOOST_PYTHON_DECL std::ostream& operator<<(std::ostream& os, type_id_t const& x)
{
# ifdef BOOST_PYTHON_TYPE_ID_NAME
os << x.m_base_type;