File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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};
Original file line number Diff line number Diff line change 2828#endif
2929
3030namespace 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
3535namespace boost { namespace python { namespace objects {
You can’t perform that action at this time.
0 commit comments