mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 04:22:16 +00:00
another attempt to fix Code Warrior 9.4 link problem
[SVN r32404]
This commit is contained in:
@@ -11,7 +11,7 @@ namespace boost { namespace python {
|
||||
|
||||
// Note: the static data members are defined in object/function.cpp
|
||||
|
||||
class docstring_options : boost::noncopyable
|
||||
class BOOST_PYTHON_DECL docstring_options : boost::noncopyable
|
||||
{
|
||||
public:
|
||||
docstring_options(bool show_all=true)
|
||||
@@ -65,8 +65,8 @@ class docstring_options : boost::noncopyable
|
||||
friend class objects::function;
|
||||
|
||||
private:
|
||||
BOOST_PYTHON_DECL static volatile bool show_user_defined_;
|
||||
BOOST_PYTHON_DECL static volatile bool show_signatures_;
|
||||
static volatile bool show_user_defined_;
|
||||
static volatile bool show_signatures_;
|
||||
bool previous_show_user_defined_;
|
||||
bool previous_show_signatures_;
|
||||
};
|
||||
|
||||
@@ -28,8 +28,8 @@
|
||||
#endif
|
||||
|
||||
namespace boost { namespace python {
|
||||
BOOST_PYTHON_DECL volatile bool docstring_options::show_user_defined_ = true;
|
||||
BOOST_PYTHON_DECL volatile bool docstring_options::show_signatures_ = true;
|
||||
volatile bool docstring_options::show_user_defined_ = true;
|
||||
volatile bool docstring_options::show_signatures_ = true;
|
||||
}}
|
||||
|
||||
namespace boost { namespace python { namespace objects {
|
||||
|
||||
Reference in New Issue
Block a user