[pkg-boost-commits] r14005 - in boost/branches/debian-1.33.1: boost debian

Domenico Andreoli cavok at alioth.debian.org
Sat Nov 4 00:01:34 CET 2006


Author: cavok
Date: 2006-11-04 00:01:34 +0100 (Sat, 04 Nov 2006)
New Revision: 14005

Modified:
   boost/branches/debian-1.33.1/boost/any.hpp
   boost/branches/debian-1.33.1/debian/changelog
Log:
synchronized with Ubuntu

Modified: boost/branches/debian-1.33.1/boost/any.hpp
===================================================================
--- boost/branches/debian-1.33.1/boost/any.hpp	2006-09-27 10:45:58 UTC (rev 14004)
+++ boost/branches/debian-1.33.1/boost/any.hpp	2006-11-03 23:01:34 UTC (rev 14005)
@@ -217,15 +217,15 @@
     // use typeid() comparison, e.g., when our types may travel across
     // different shared libraries.
     template<typename ValueType>
-    ValueType * unsafe_any_cast(any * operand)
+    inline ValueType * unsafe_any_cast(any * operand)
     {
         return &static_cast<any::holder<ValueType> *>(operand->content)->held;
     }
 
     template<typename ValueType>
-    const ValueType * unsafe_any_cast(const any * operand)
+    inline const ValueType * unsafe_any_cast(const any * operand)
     {
-        return any_cast<ValueType>(const_cast<any *>(operand));
+        return unsafe_any_cast<ValueType>(const_cast<any *>(operand));
     }
 }
 

Modified: boost/branches/debian-1.33.1/debian/changelog
===================================================================
--- boost/branches/debian-1.33.1/debian/changelog	2006-09-27 10:45:58 UTC (rev 14004)
+++ boost/branches/debian-1.33.1/debian/changelog	2006-11-03 23:01:34 UTC (rev 14005)
@@ -1,3 +1,18 @@
+boost (1.33.1-8) unstable; urgency=low
+
+  * Synchronized with Ubuntu.
+
+ -- Domenico Andreoli <cavok at debian.org>  Fri,  3 Nov 2006 23:54:34 +0100
+
+boost (1.33.1-7ubuntu1) edgy; urgency=low
+
+  * debian/patches/05-fix_signals.patch:
+    - patch from upsteam CVS, fixes Boost.Signals to work properly
+      across shared library boundaries with certain compiler options.
+      (Closes Ubuntu: #62202)
+
+ -- Matti Lindell <mlind at cs.joensuu.fi>  Mon, 25 Sep 2006 08:54:32 +0300
+
 boost (1.33.1-7) unstable; urgency=low
 
   * Re-added build dependency on python2.4-dev.




More information about the pkg-boost-commits mailing list