Skip to content

Commit 82919f0

Browse files
author
Ralf W. Grosse-Kunstleve
committed
another attempt to fix Code Warrior 9.4 link problem
[SVN r32404]
1 parent 1f6ded7 commit 82919f0

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

include/boost/python/docstring_options.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ namespace boost { namespace python {
1111

1212
// Note: the static data members are defined in object/function.cpp
1313

14-
class docstring_options : boost::noncopyable
14+
class BOOST_PYTHON_DECL docstring_options : boost::noncopyable
1515
{
1616
public:
1717
docstring_options(bool show_all=true)
@@ -65,8 +65,8 @@ class docstring_options : boost::noncopyable
6565
friend class objects::function;
6666

6767
private:
68-
BOOST_PYTHON_DECL static volatile bool show_user_defined_;
69-
BOOST_PYTHON_DECL static volatile bool show_signatures_;
68+
static volatile bool show_user_defined_;
69+
static volatile bool show_signatures_;
7070
bool previous_show_user_defined_;
7171
bool previous_show_signatures_;
7272
};

src/object/function.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
#endif
2929

3030
namespace boost { namespace python {
31-
BOOST_PYTHON_DECL volatile bool docstring_options::show_user_defined_ = true;
32-
BOOST_PYTHON_DECL volatile bool docstring_options::show_signatures_ = true;
31+
volatile bool docstring_options::show_user_defined_ = true;
32+
volatile bool docstring_options::show_signatures_ = true;
3333
}}
3434

3535
namespace boost { namespace python { namespace objects {

0 commit comments

Comments
 (0)