Revision: 1465
http://pygccxml.svn.sourceforge.net/pygccxml/?rev=1465&view=rev
Author: roman_yakovenko
Date: 2008-12-13 12:44:27 +0000 (Sat, 13 Dec 2008)
Log Message:
-----------
remove BOOST_PYTHON_DECL from the files - should enable header-only library on Windows
Modified Paths:
--------------
pyplusplus_dev/indexing_suite_v2/indexing_suite/python_iterator.hpp
pyplusplus_dev/indexing_suite_v2/indexing_suite/slice.hpp
Modified: pyplusplus_dev/indexing_suite_v2/indexing_suite/python_iterator.hpp
===================================================================
--- pyplusplus_dev/indexing_suite_v2/indexing_suite/python_iterator.hpp 2008-12-09 20:30:09 UTC (rev 1464)
+++ pyplusplus_dev/indexing_suite_v2/indexing_suite/python_iterator.hpp 2008-12-13 12:44:27 UTC (rev 1465)
@@ -28,7 +28,7 @@
#include <boost/python/handle.hpp>
namespace boost { namespace python { namespace indexing {
- struct BOOST_PYTHON_DECL python_iterator
+ struct /*BOOST_PYTHON_DECL*/ python_iterator
{
python_iterator (boost::python::object obj)
: m_iter_obj (handle<> (PyObject_GetIter (obj.ptr()))),
Modified: pyplusplus_dev/indexing_suite_v2/indexing_suite/slice.hpp
===================================================================
--- pyplusplus_dev/indexing_suite_v2/indexing_suite/slice.hpp 2008-12-09 20:30:09 UTC (rev 1464)
+++ pyplusplus_dev/indexing_suite_v2/indexing_suite/slice.hpp 2008-12-13 12:44:27 UTC (rev 1465)
@@ -26,7 +26,7 @@
#include <algorithm>
namespace boost { namespace python { namespace indexing {
- struct BOOST_PYTHON_DECL slice : public boost::python::object
+ struct /*BOOST_PYTHON_DECL*/ slice : public boost::python::object
{
// This is just a thin wrapper around boost::python::object
// so that it is possible to register a special converter for
@@ -61,7 +61,7 @@
{}
};
- struct BOOST_PYTHON_DECL integer_slice
+ struct /*BOOST_PYTHON_DECL*/ integer_slice
{
// This class provides a convenient interface to Python slice
// objects that contain integer bound and stride values.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|