Update of /cvsroot/boost-sandbox/boost-sandbox/boost
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16399
Modified Files:
deconstruct_ptr.hpp
Log Message:
Declared some functions extern inline to fix link errors.
Index: deconstruct_ptr.hpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/deconstruct_ptr.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- deconstruct_ptr.hpp 6 Mar 2007 21:47:07 -0000 1.5
+++ deconstruct_ptr.hpp 7 Mar 2007 17:06:22 -0000 1.6
@@ -24,12 +24,12 @@
{
namespace deconstruct_detail
{
- void do_postconstruct(const boost::postconstructible *ptr)
+ extern inline void do_postconstruct(const boost::postconstructible *ptr)
{
boost::postconstructible *nonconst_ptr = const_cast<boost::postconstructible*>(ptr);
nonconst_ptr->postconstruct();
}
- void do_postconstruct(...)
+ extern inline void do_postconstruct(...)
{
}
}
|