2
0
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:
Ralf W. Grosse-Kunstleve
2006-01-24 17:55:56 +00:00
parent 1f6ded7b4e
commit 82919f0d5c
2 changed files with 5 additions and 5 deletions

View File

@@ -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_;
};

View File

@@ -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 {