]> git.lyx.org Git - lyx.git/blobdiff - boost/boost/signals/trackable.hpp
typos
[lyx.git] / boost / boost / signals / trackable.hpp
index cdeee9d5f4ea5d7270a6fb77e2e4c8227a71e204..544ec611e0b5dcc4c4a80934d57faf0c83253fd9 100644 (file)
@@ -1,15 +1,9 @@
 // Boost.Signals library
-//
-// Copyright (C) 2001-2003 Doug Gregor (gregod@cs.rpi.edu)
-//
-// Permission to copy, use, sell and distribute this software is granted
-// provided this copyright notice appears in all copies.
-// Permission to modify the code and to distribute modified code is granted
-// provided this copyright notice appears in all copies, and a notice
-// that the code was modified is included with the copyright notice.
-//
-// This software is provided "as is" without express or implied warranty,
-// and with no claim as to its suitability for any purpose.
+
+// Copyright Douglas Gregor 2001-2004. Use, modification and
+// distribution is subject to the Boost Software License, Version
+// 1.0. (See accompanying file LICENSE_1_0.txt or copy at
+// http://www.boost.org/LICENSE_1_0.txt)
 
 // For more information, see http://www.boost.org
 
 #include <list>
 #include <vector>
 
+#ifdef BOOST_HAS_ABI_HEADERS
+#  include BOOST_ABI_PREFIX
+#endif
+
 namespace boost {
 
 namespace BOOST_SIGNALS_NAMESPACE {
@@ -104,7 +102,7 @@ namespace BOOST_SIGNALS_NAMESPACE {
       {
         // Take the address of this object, because the object itself may be
         // trackable
-        add_if_trackable(addressof(t));
+        add_if_trackable(boost::addressof(t));
       }
 
       // add_if_trackable() adds trackable objects to the list of bound objects
@@ -190,4 +188,8 @@ namespace BOOST_SIGNALS_NAMESPACE {
 
 } // end namespace boost
 
+#ifdef BOOST_HAS_ABI_HEADERS
+#  include BOOST_ABI_SUFFIX
+#endif
+
 #endif // BOOST_SIGNALS_TRACKABLE_HPP