2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 04:22:16 +00:00

Fix mistaken dependency on lightweight_test.hpp

[SVN r33032]
This commit is contained in:
Dave Abrahams
2006-02-20 19:21:59 +00:00
parent 6ef31ba33a
commit a8bad65556
2 changed files with 2 additions and 2 deletions

View File

@@ -7,5 +7,5 @@
int main()
{
boost::python::converter::arg_to_python<PyTypeObject*> x(0);
return boost::report_errors();
return 0;
}

View File

@@ -9,5 +9,5 @@ struct X : PyObject {};
int main()
{
boost::python::converter::arg_to_python<X*> x(0);
return boost::report_errors();
return 0;
}